The header width and height are defined in the theme’s functions.php file:
define( 'HEADER_IMAGE_WIDTH', apply_filters( 'twentyten_header_image_width', 940 ) );
define( 'HEADER_IMAGE_HEIGHT', apply_filters( 'twentyten_header_image_height', 198 ) );
Ideally, you should create a child theme and use something like:
add_filter( 'twentyten_header_image_height', 'my_header_height' );
function my_header_height($height) {
$height = 100;
return $height;
}
in the child’s functions.php file to redefine the header height.
Wow thank you so much, I have spent hours tryng to figure out how to change this and the title tag “Action Pest Control Log” This line takes up too much space in the height. How do I change the height for this area? Thanks again 🙂
Edit style.css:
#wrapper {
background:#fff;
margin-top:20px;
padding:0 20px;
}
and remove margin-top:20px;.
thank you thank you very very much. Do you know how I remove the link from this forum to [link redacted]?
the link that I want to remove is ontariobedbugs.com
ok I see it is gone…thanks so much and thank you for your help tonight.