Viewing 14 posts - 1 through 14 (of 14 total)
  • Author
    Posts
  • #1180236

    Hello!
    I want to customize the breakpoint for the menu.
    In the theme-settings there’s this option to change between 768px and 990px. I would like to change it to 1200px. So that the burger menu appears already at 1200px.

    Could you give me a hint how to alter this in css? I tried a lot but can’t find the right selectors as it seems.

    Thank you,
    Angie.

    #1180592

    Hey Bix77,

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

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

    Best regards,
    Rikard

    #1187259

    Thank you!

    #1187532

    Hi,

    Great, I’m glad that 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

    #1220470

    Hi Rikard, could you please help woth similar issue? I used
    /* Activate burger menu */
    @media only screen and (max-width: 1195px) {
    #top #header .av-main-nav > li.menu-item {
    display: none!important;
    }
    #top #header .av-burger-menu-main {
    cursor: pointer;
    display: block!important;
    }}

    and burger menu apperead , but not in desired position on top in row with the social icons. (instead it replaces the menu position)

    what do i have to modify ? thanks a lot, marcus (see private for link )

    #1220768

    Hi onsite_org,

    Please try this CSS instead:

    @media only screen and (max-width: 1195px) {
    #top #header .av-main-nav > li.menu-item {
    display: none!important;
    }
    #top #header .av-burger-menu-main {
    cursor: pointer;
    display: block!important;
    }
    .responsive #top .av_mobile_menu_tablet #header_main_alternate {
        display: none;
    }
    }

    Best regards,
    Rikard

    #1220821

    Thanks Rikard, but no burger appears lower 1195px with this. I had to reset to former version. Any other Ideas ? thanks, marcus

    #1221076

    Hi onsite_org,

    Thanks for the update. I can’t load your site anymore, did you move it? If so then please post a new link so that we can inspect it.

    Best regards,
    Rikard

    #1221113

    I am very sorry, yes we moved, final target see private.

    #1221532

    Hi,

    Thanks for that. Please try this CSS as well:

    @media only screen and (max-width: 1195px) and (min-width: 768px) {
    .responsive #top #wrap_all .av_mobile_menu_tablet .main_menu {
        top: 0;
        left: auto;
        right: 0;
        display: block;
    }
    }

    If that doesn’t help then please include admin login details in private.

    Best regards,
    Rikard

    #1221661

    so sorry, still does not work. see private

    #1222259

    Hi,

    Thanks for the update. I’ve adjusted the code a bit, it’s at the very top of your Quick CSS box, please review your site.

    Best regards,
    Rikard

    #1222728

    Hi Rikard, this is great and functionning perfect, many thanks, marcus

    #1222764

    Hi onsite_org,

    Glad we could help :)

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

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