Removing header from other pages
-
I would like to remove the name of the blog and the picture (are both of these the header?) from every page except the home page. I understand that there is a code that does this but I don’t know where to paste the code to remove the header from the other pages.
The blog I need help with is: (visible only to logged in users)
-
hi,
Try this in your Custom CSS (https://en.support.wordpress.com/custom-css/)
body:not(.home) #site-header {
display: none ;
}Note the Custom CSS is only available on a paid plan.
https://wordpress.com/pricing/
- The topic ‘Removing header from other pages’ is closed to new replies.