Hey there mebond,
How are you doing today?
I’ve checked the theme and header looks the same on all pages on my sandbox site so I’m not really sure what happens on your end.
Would you mind posting link to your site where I can see this so we can try to figure this one out?
Best regards,
Bojan
Thread Starter
mebond
(@mebond)
Interesting. I don’t know what has caused this. Here’s my site so you can take a look: http://www.mebondbooks.com/ Thanks!
Hey again mebond,
There is some top/bottom padding added on that image only on home page which is the reason it is not displayed on other pages, you can change that by adding the following CSS code in the style.css file of your child theme or if your theme doesn’t have custom CSS tab add it in your site using the following plugin:
http://wordpress.org/plugins/simple-custom-css
@media screen and (min-width: 768px) {
.site-branding {
padding: 7.75em 0;
}
}
Hope this helps 🙂
Cheers,
Bojan
Thread Starter
mebond
(@mebond)
Thanks for your help. Now I have to figure out how to create a child theme! This will probably take some time, so I won’t be able to respond for a while. I appreciate your time and effort.
Hey again mebond,
As I mentioned above alternatively you can use http://wordpress.org/plugins/simple-custom-css plugin, once the plugin is installed and activated you can add the code in your admin in Appearance -> Custom CSS.
As for child themes you can check this tutorial: http://premium.wpmudev.org/blog/how-to-create-wordpress-child-theme/.
Hope this helps 🙂
Cheers,
Bojan
Thread Starter
mebond
(@mebond)
Thank you, Bojan. I actually got my techie brother to help. I just don’t have the time and energy to figure out all this stuff. 🙂
Hello,
I just had exactly the same issue and was about to toss the theme and start over when i saw this post. Just wanted to thank Bojan for the solution