Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #1438882

    Hi,
    how could I get different sizes for the burger menu icon for desktop and mobile?

    Thank you for help!
    Best regards

    #1438900

    Hey dreamreader,

    Please try to explain your intentions a bit further, and post a link to where we can see the actual element. If you have screenshots highlighting what you would like to achive, then please share those with us as well.

    Best regards,
    Rikard

    #1438918

    Hi Rikard,
    I am using on desktop the burger menu instead of text menu.
    If I choose the default burger menu icon style for mobile, than the size of burger menu on desktop is ok but on mobile I would prefer to have it smaller.
    See link enclosed with default size.

    Thank you for your help.
    Best regards!

    #1438952

    Hi,

    Thank you for the clarification.

    You can add this css code to adjust the size of the burger menu on mobile view:

    @media only screen and (max-width: 767px) {
    
      /* Add your Mobile Styles here */
      .av-hamburger-box {
        width: 24px;
        height: 24px;
        display: inline-block;
        position: relative;
        top: 10px;
      }
    
      .av-hamburger-inner::before {
        top: -7px;
      }
    
      .av-hamburger-inner::after {
        bottom: -7px;
      }
    }

    Best regards,
    Ismael

    #1438975

    Perfect!
    Thank you Ismael and best regards!

    #1439028

    Hi,
    Glad Ismael could help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Different Burger Icon size on desktop and mobile’ is closed to new replies.