Brunelleschi Header Image Height
-
Hello,
After trying many times without success I’d like to ask (maybe to Kit if he still has a bit free time?) how to increase the height of the header image in Brunelleschi theme.
I tried the following code in the functions.php of my child theme (found it here)
<?phpfunction brunelleschi_child_filter_header_image_height( $height ) {
// set equal whatever height you want;
// e.g. for 300px, use 300
$new_height = 330;
// now return it
return $new_height;
}
add_filter( ‘brunelleschi_header_image_height’, ‘brunelleschi_child_filter_header_image_height’ );It works when uploading a new image with the new size (in my case 1140px x 394px) but then when I empty my browser cache and come back to my site, it switches back to a cropped image.
So I’ve put again my ancient header images until someone can help me in fixing this issue.
Any Idea?
Here is my site.
Thx a lot.
- The topic ‘Brunelleschi Header Image Height’ is closed to new replies.