Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #1339080

    Hello,
    I have a website, where no logo is uploaded or wanted. How can I hide the standard Enfold logo?
    Kind regards,
    Kati

    • This topic was modified 2 years, 8 months ago by KittenAdmin.
    #1339105

    Hey Katja,
    Thanks for the link to your site, to hide the logo add this code in the General Styling ▸ Quick CSS field

    #header_main .logo {
    	display: none;
    }

    But this leaves an empty white bar across the top of your site, so if you also want to hide this try this css instead

    #header_main .av-logo-container {
    	display: none;
    }

    this just leaves your topbar and menu bar
    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    #1339169

    Hello Mike,

    thanks for your reply. When I choose the first css, the logo appears on mobiles with the menu bar. With the second css, the logo is gone, but the menu on mobiles is missing…

    Kind regards,
    Kati

    #1339175

    Hi,
    For mobile try adding this:

    @media only screen and (max-width: 767px) { 
    	.responsive #top #header_main .logo a {
    		display: none;
    	}
    }

    But is this what you are trying for? Because in this case in both mobile and desktop you will have an empty white header bar, perhaps you plan to add text there?

    Best regards,
    Mike

    #1339176

    Hi,

    thank you for the code. I just uploaded an empty png file to fix the problem and reduced the header height to 45px.

    Yes, there is a white/blank space now, but the customer has nothing to display there. If he wants, then he has to accept that it is not possible…

    Kind regards,
    Kati

    #1339180

    Hi,
    Glad to hear that you have this sorted out, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Hiding Enfold logo when no logo uploaded’ is closed to new replies.