Hi
1) Go to includes/meta-boxes.php and go to line 1085:
// FULL WIDTH MEDIA
array(
'name' => __('Media Display', 'swift-framework-admin'),
'id' => "{$prefix}fw_media_display",
'type' => 'select',
'options' => array(
'fw-media-title' => __('Full Width with Title Overlay', 'swift-framework-admin'),
'fw-media' => __('Full Width', 'swift-framework-admin'),
'standard-above' => __('Standard (Above content)', 'swift-framework-admin'),
'standard' => __('Standard', 'swift-framework-admin'),
),
'multiple' => false,
'std' => 'standard',
'desc' => __('Choose how you would like to display your selected media - full width (edge to edge) with or without the title overlay, or standard. If you choose the title overlay option, it is recommended that you hide the page title in the page title meta options.', 'swift-framework-admin')
),
edit line 1097:
'std' => 'standard',
to
'std' => 'fw-media-title',
2) Same method, go to line 1101 :
// MEDIA IMAGE HEIGHT
array(
'name' => __('Title Overlay Min Height', 'swift-framework-admin'),
'id' => $prefix . 'media_height',
'desc' => __("If you are using the 'Full Width with Title Overlay' media display type, you can set a min-height for it here (no px).", 'swift-framework-admin'),
'clone' => false,
'type' => 'text',
'std' => '500',
),
change 500 to 50
– Kyle