• Resolved Revived

    (@revived)


    I like TwentyEleven overall but I need to reduce the height of the header to 160something. Where are these changes made?

Viewing 16 replies (of 16 total)
  • thank you all. it worked for both twenty eleven header width and height.

    <?php
    
    add_filter( 'twentyeleven_header_image_width', 'sayiklamalar_header_image_width');
    function sayiklamalar_header_image_width($width) {
    	return 960;
    }
    
    add_filter( 'twentyeleven_header_image_height', 'sayiklamalar_header_image_height');
    function sayiklamalar_header_image_height($height) {
    	return 125;
    }
    
    ?>
Viewing 16 replies (of 16 total)
  • The topic ‘Reducing the req'd header height of 288 to something smaller (in TwentyEleven)’ is closed to new replies.