Viewing 8 posts - 1 through 8 (of 8 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?

    #1483431

    Hi,

    The white line at the very top is part of the browser ui and was mistakenly included in the screenshot. It should not appear on the actual site.

    Best regards,
    Ismael

    #1483445

    I use dark mode browsers and it shows on there. This is Firefox:
    White line
    Many thanks

    #1483468

    Hi,

    Try to add this css code:

    .responsive #top #main {
        margin-top: -1px;
    }

    View post on imgur.com

    Best regards,
    Ismael

    #1483490

    Perfect thanks Ismael!
    You can close this thread.

    #1483504

    Hi,

    Thanks for the update, we’ll close this thread for now then. Please open a new thread if you should have any further questions or problems.

    Best regards,
    Rikard

Viewing 8 posts - 1 through 8 (of 8 total)
  • The topic ‘Transparent mobile header’ is closed to new replies.