Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #1058203

    Hi Guys,

    In your theme header options you have the facility to have the logo centred with the menu below. Is there any way for the menu to be positioned left and right of the logo? I’ve provided a link to a PDF in the Private Content section to show you how I would like the header to be positioned.

    Your support would be greatly appreciated.

    Thanks in advance,
    Johnny

    #1058661

    Hey StormWebDesign,

    Please refer to a solution posted here in our docs

    If you need further assistance please let us know.
    Best regards,
    Victoria

    #1058717
    This reply has been marked as private.
    #1059093

    Hi,

    Great, glad we could help. Please let us know if you should need any further help on the topic or if we can close it.

    Best regards,
    Rikard

    #1067015

    Hi Guys,

    Thank you for your previous response however the burger menu is not showing in iPad portrait or landscape and the menu is overlapping the logo. The burger menu also jumps to the left on some screen sizes and totally disappears on others. Is it possible to have the burger menu positioned right until the monitor reaches something like 1366px?

    Thank you again for your valued support.

    #1067619

    Hi,

    Please try the following in Quick CSS under Enfold->General Styling:

    @media only screen and (max-width: 1365px) {
      nav.main_menu {
        display: block !important;
      }
      #avia-menu .menu-item {
        display: none;
      }
      .av-burger-menu-main.menu-item-avia-special {
        display: block;
      }
    }
    

    If you need further help then please check the login details as they are not working.

    Best regards,
    Rikard

    #1067998
    This reply has been marked as private.
    #1068355

    Hi,

    Now that you use the burger menu on the screens up to 1365px, you need to adjust this code
    :

    
    @media only screen and (min-width: 780px) {
    .av-main-nav-wrap {
        left: 45%;
        transform: translateX(-50%);
    }
    }
    

    to

    
    @media only screen and (min-width: 1365px) {
      .av-main-nav-wrap {
           left: 45%;
           transform: translateX(-50%); 
      }
    }
    

    And add this code too

    
    .av-main-nav-wrap {
        top: -39px;
    }
    

    If you need further assistance please let us know.
    Best regards,
    Victoria

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