How to hide Logo on homepage & show on inner pages
Updated On May 23, 2015 March 13, 2014 -Written ByIf your theme has radical homepage design, you may want to hide website logo on homepage but still display it like normal on inner posts or pages. This can be easily implemented using “display” functionality through CSS.
CSS to hide logo from homepage of WordPress site
Add following code in your style.css file (backup this file before making changes).
For Genesis Themes with image logo
[cc]
.home .title-area {
display:none;
}
[/cc]
For other WordPress Themes with text logo
[cc]
.home .site-title, .home .site-description {
display:none;
}
[/cc]
This will hide logo only from the homepage. Logo will appear at correct place in inner posts and pages of your WordPress website.
thanks for the code, but I can’t get it to work. Where should I put this code? At the end of the style.css or is there a way to do this using simple hooks? It seems like this should be an easy customisation…but alas…
Keep up the good work
Cheers