Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #989388

    Hi, how do I change the mobile menu icon color?
    I tried messing with CSS but I could not find the right setting.

    #989401

    Hey Giorgio Mario,

    Please provide a link to the site/page in question so we can look into this issue further.

    Best regards,
    Jordan Shannon

    #989618

    Currently the mobile menu icon is white, I need it to be #808080.
    Also, right now the mobile menu replaces the normal one when the resolution is less than 989 px, how can I change this threshold and make it appear at lets say 1024 pixel or less?

    #989755

    Hi GiorgioAldeghi,

    Please remove your code and add this one

    
    @media only screen and (max-width: 1024px) {
      nav.main_menu {
        display: block !important;
      }
      .menu-item {
        display: none;
      }
      .av-burger-menu-main.menu-item-avia-special {
        display: block;
      }
      #top .header_color.av_header_transparency .avia-menu-fx, 
       #top .av_header_transparency div .av-hamburger-inner,
       #top  .av_header_transparency div .av-hamburger-inner::before, 
        #top .av_header_transparency div .av-hamburger-inner::after {
         background-color: #fff;
       }
    }
    

    Remove this one
    Image 2018-07-25 at 16.55.19.png

    Best regards,
    Victoria

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