Hi. How can I hide the header image on all pages apart from the home page? Thanks in advance.
Hi ruth elizabeth smith,
To hide the header image in all pages apart from the home page Go to Appearance -> Customize/Theme Options -> Design Options Tab -> Custom CSS paste the following CSS code and Click on save button:
.page .header-image { display: none; } .home .header-image { display: block; }
Thank you!
Thank you very much. That works really well.
Sorry to bother you again but I would also like to display the text header (#site-title) on all the pages but hide it on the home page.
Would you be able to give me some code for that please. Thanks.
To hide site title on home page only then add below custom css too
.home #site-logo { display: none; }