• Resolved yennijb

    (@yennijb)


    I would like to alter the height of the header image, I looked in the PHP and CSS and couldn’t seem to find a place to enable me to do this. I’d like to have the header image only 250px high so that the content of the website isn’t all below the fold. If anyone knows where to find this in the code, or if there’s a work-around I’m not aware of that would be great! thanks!

Viewing 1 replies (of 1 total)
  • Thread Starter yennijb

    (@yennijb)

    I found it finally, this is located in functions.php (“Adamos Theme Functions”)

    /**
     * Implement the Custom Header feature
     */
    add_theme_support( 'custom-header' );
    function adamos_custom_header_setup() {
    $args = array(
    		'default-image'          => '',
    		'default-text-color'     => 'FFF',
    		'width'                  => 1400,
    		'height'                 => 500,
    		'flex-height'            => true,
    		'wp-head-callback'       => 'adamos_header_style',
    		'admin-head-callback'    => 'adamos_admin_header_style',
    		'admin-preview-callback' => 'adamos_admin_header_image',
    	);

Viewing 1 replies (of 1 total)
  • The topic ‘Altering height of header image’ is closed to new replies.