Viewing 12 posts - 1 through 12 (of 12 total)
  • Author
    Posts
  • #1463344

    Hi,

    How can I hide the menu in the header completely? I don’t have anything in my menu but when I scroll down the menu background appears even though there is no menu..

    View post on imgur.com

    Also – how do I make the mobile version have a transparent background just like the desktop? I don’t want the burger menu to be shown either.

    View post on imgur.com

    Thanks!

    Harvinder

    #1463395

    Hey ballindigital,

    Thank you for the inquiry.

    We added the following css code in the Enfold > General Styling > Quick CSS field to keep the header transparent on scroll.

    .av_minimal_header .header_bg {
        opacity: 0;
    }

    Best regards,
    Ismael

    #1463419

    Hi,

    I’ve decided to uncheck the sticky header option and feel that that works better.

    How do I make the mobile version have a transparent background just like the desktop? I don’t want the burger menu to be shown either.

    View post on imgur.com

    #1463478

    Hi,

    Thank you for the update.

    Please include this css code to make the header transparent on mobile view and remove the burger menu.

    @media only screen and (max-width: 768px) {
    
      /* Add your Mobile Styles here */
      .responsive #top #wrap_all #header {
        position: fixed;
        background: transparent;
      }
    
      .responsive #top .av-burger-menu-main {
        display: none !important;
      }
    }

    Best regards,
    Ismael

    #1463512

    Thanks.. We’re almost there – I wanted it to behave exactly like the desktop version in that it doesn’t appear as you scroll down?

    #1463521

    I would also like to know how to hide the menu on the mobile version please..

    #1463575

    Hi,

    I wanted it to behave exactly like the desktop version in that it doesn’t appear as you scroll down?

    Unfortunately, this is not possible without significant modification to the theme. The previous css code should hide the mobile menu.

    Best regards,
    Ismael

    #1463616

    Which one?

    #1463619

    @media only screen and (max-width: 768px) {

    /* Add your Mobile Styles here */
    .responsive #top #wrap_all #header {
    position: fixed;
    background: transparent;
    }

    .responsive #top .av-burger-menu-main {
    display: none !important;
    }
    }

    That doesn’t hide the menu in mobile view. Could you just help me to hide it?

    #1463770

    Hi,
    When I check your homepage there is no content, so I checked the page linked below, and I see for mobile the header shows and when I scroll the header scrolls away.
    As I read your posts above I believe that you want a transparent mobile header and hide the burger menu.
    For this, please add this css to your Quick CSS field:

    @media only screen and (max-width: 767px) { 
      .responsive #top #main {margin-top: -80px!important;}
      #top #wrap_all .av_header_transparency {background-color: transparent!important;}
      div#header_main > .container {display: block !important;}
      #avia-menu-0 { display: none;}
      }

    After you apply the CSS please clear your browser cache and reload the page to check.

    Best regards,
    Mike

    #1463822

    Thank you – this is great.

    Would it be possible to centre the menu in mobile view like this too?

    #1463886

    Hi,
    Try adding this css to your Quick CSS field:

    @media only screen and (max-width: 767px) {
    .responsive #top .logo.avia-standard-logo {
    	display: flex;
      justify-content: center;
      width: 100%;
    }
    }

    Best regards,
    Mike

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