Want to remove static page header using CSS
-
Hi,
I am having trouble removing the header “Home” on my homepage, I would like to have no text underneath my menu bar. Could anyone help out? Thanks.
website:
The blog I need help with is: (visible only to logged in users)
-
Hi, I’ve used the “home” CSS class defined in the opening HTML body tag to specifically target the home page and remove the content area leaving the footer, menu and your image, and also tightened up the footer area where the credits are.
.home .site-content { display: none; } .home .footer-wrap { margin-top: 0; } .home .site-footer { margin-top: 2em; margin-bottom: 3em; }See what you think and let me know.
-
Fantastic! So much better. Thank you for your help!
Also, is there any way to get rid of the “blog at wordpress | the gateway theme” blurb at the very bottom?
-
That’s great! You are not allowed to hide the WordPress.com and theme footer credits per our Terms of Service (#11). See the Frequently Asked Questions on the Custom Design support page for more information.
You are allowed to restyle the footer credits to better fit with your design as long as they remain readable. If you would like help restyling or adding to the existing footer credits, let me know.
-
I would love to restyle the footer credits. Ideally i would like them to be white font color, and a smaller font size.
Thank you for all of your help!
-
Give this a try and see what you think.
.site-info, .site-info a { font-size: 1.4rem; color: #fff !important; }
- The topic ‘Want to remove static page header using CSS’ is closed to new replies.