NiceThemesDisplay No Logo – NiceThemes http://nicethemeswp.com/forums/topic/display-no-logo/feed/ Wed, 23 Apr 2025 14:41:11 +0000 http://bbpress.org/?v=2.5.12-6148 en-US http://nicethemeswp.com/forums/topic/display-no-logo/#post-2928 <![CDATA[Display No Logo]]> http://nicethemeswp.com/forums/topic/display-no-logo/#post-2928 Fri, 27 Dec 2013 10:14:56 +0000 craigblumberg Hi,

I would like to display no logo on the home page, as when I look at in on the mobile I get a blue block. How do I either make this transparent so it is not seen as an image block on the mobile or do away with the logo all together?

Kind regards
Craig

]]>
http://nicethemeswp.com/forums/topic/display-no-logo/#post-2929 <![CDATA[Reply To: Display No Logo]]> http://nicethemeswp.com/forums/topic/display-no-logo/#post-2929 Fri, 27 Dec 2013 12:58:16 +0000 Juanfra Aldasoro Hello Craig,

Thanks for writing. To display no logo on the home page you’ll need to work a bit with your CSS. Something like:

body.home #logo{
   display: none;
}

would work. With regards to the blue block, it would be working with the CSS as well, but in the responsive section.

Something like:

@media screen and (max-width: 1024px) {
.has-slider #header{
   display: none;
}
}

Remember to include all the new CSS either on the custom.css file or within the options, in the field “Custom CSS”.

Best,
Juan.

]]>