Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #1483300

    Is it possible to have the mobile header transparent with no logo showing content underneath with just burger menu button to the right?
    This is how it looks now:
    Mobile header
    Thanks

    #1483321

    Hey fanlokbun,

    Thank you for the inquiry.

    You can use this css code to hide the logo on mobile view and make the header transparent.

    /*
    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 #top #wrap_all .av_header_transparency {
        position: fixed;
        background-color: transparent;
      }
    
      .responsive #top .av_header_transparency.av_alternate_logo_active .logo a>img,
      .responsive #top .av_header_transparency.av_alternate_logo_active .logo a>svg,
      .responsive #top .logo {
        display: none;
      }
    }

    View post on imgur.com

    Best regards,
    Ismael

    #1483389

    That’s excellent thanks Ismael! Is there any way to get rid of the white line at the top?

Viewing 3 posts - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.