Hi there
How to I completely remove the logo from my website? Including mobile view?
At the moment I’ve removed it from desktop but it still appears on mobile.
Thanks
Fleur
Hey Fleur,
To hide the logo in mobile view please use the below css in Enfold > General styling > Quick CSS
@media only screen and (max-width: 767px){
.responsive #top .logo {
display: none !important;
}}
Best regards,
Vinay
Hey, this one didn’t quite work. It removed the entire space where the logo was, which means all of my page content has now moved up on the page, and my mobile nav is cut off at the top of the screen. Is there a way to remove the logo but retain the white bar that used to be there behind it?
PS in case you need it, login below.
Hi,
Please use following code to Quick CSS in Enfold theme options under General Styling tab
.logo, .responsive .logo { display: none !important; }
Best regards,
Yigit
Thanks, that did the trick!