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

    Hello amazing Enfold Support,

    I want to remove the logo on mobile. The desired output I am looking for is a burger menu in the top right-hand corner with a transparent background.

    I have searched through previous threads and can’t seem to find this topic. Your help is greatly appreciated.

    #1377670

    Hey James,

    Thank you for the inquiry.

    Using the following css code should hide the logo and remove the background of the header container. The modification will also adjust the color of the mobile menu.

    /*
    Mobile Styles
    ================================================== */
    /* Note: Add new css to the media query below that you want to only effect the Mobile and Tablet Portrait view */
    
    @media only screen and (max-width: 767px) {
    
      /* Add your Mobile Styles here */
      .responsive .logo img, .responsive .logo svg {
        display: none;
      }
    
      .responsive #top #wrap_all #header {
        position: fixed;
      }
    
      .responsive #top .header_bg {
        opacity: 0;
      }
    
      #top #wrap_all .av_header_transparency {
        background-color: transparent;
        border-color: transparent;
      }
    
      .header_color div .av-hamburger-inner, .header_color div .av-hamburger-inner::before, .header_color div .av-hamburger-inner::after {
        background-color: #000000;
      }
    }
    

    Please make sure to temporarily disable the Enfold > Performance > File Compression settings and purge the cache after adding the css.

    Best regards,
    Ismael

    #1377675

    Thank you. This worked perfectly with one exception. Once I start to scroll down, I get a bottom border line where the header is. I would like to remove this as well, please.

    #1377696

    Hi,

    Please add following code to Quick CSS as well

    
    @media only screen and (max-width: 767px) { 
    .av_minimal_header_shadow {
      box-shadow: none;
    }}
    

    Best regards,
    Yigit

    #1378182

    That did it!

    Thank you, Yigit.

    #1378192

    Hi,

    You are welcome! :)

    For your information, you can take a look at Enfold documentation here – https://kriesi.at/documentation/enfold/

    If you have any other questions or issues, feel free to start a new thread under Enfold sub forum and we will gladly try to help you :)

    Enjoy the rest of your day!

    Best regards,
    Yigit

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘I want to remove logo on mobile’ is closed to new replies.