Archived topic
Position, size, and appearance of image in header
3 replies · Started by Alan Stancliff on March 28, 2018
My website is at http://tentcitytacoma.net. I switched from another, nonresponsive theme to GP Pro a few days ago.
I'd like the graphic at the head to have the same width, side-to-side, as the blue menu bar on the home page (static). However, I'd like it not to appear in the blog roll or other pages, only on the home page. Can you help me figure out how to do this please?
Regards,
Alan
Hi there,
You can remove the left and right header padding here: https://docs.generatepress.com/article/header-padding/
Then use this CSS to remove the image on other pages except home:
body:not(.home) .site-logo {
display: none;
}
Adding CSS: https://docs.generatepress.com/article/adding-css/
Thanks Leo,
I tried those suggestions, and they worked beautifully.
No problem!