I can’t seem to find a place or code to change it. Any suggestions?
@jbalazs8178 did you ever resolve the problem for your old post?
]]>Please provide a solution.
Thanks & Regards
]]><br>
in the text, but I cannot find the html editor. Thank you.
]]>I’m using the “arcade basic” theme for my website www.theabarbrighton.com. The header imagae on the first page is 531px which is what Iwant, but when you move on to the other pages, the header image shrinks to 300px.
I’m pretty sure the the div class=”title-card” which I’ve tried to editin the css but it hasnt worked so far. Hopefully this makes sense, I’d be really grateful for the help!
]]>function yourchildtheme_custom_header_setup() {
$args = array( 'height' => 400 );
add_theme_support( 'custom-header', $args );
}
add_action( 'after_setup_theme', 'yourchildtheme_custom_header_setup' );
Then add this to your css:
.site-header .home-link {
min-height: 400px;
}
You can use any value for the height, of course.
]]>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)
<?php
function 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.
Help! Thanks
]]>