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

    Hello,

    Is there a way to make the burger icon lines a bit thinner and to change the icon’s size (smaller)?

    Thank you

    #1344129

    Hey sitesme,

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

    .av-hamburger-inner, .av-hamburger-inner::before, .av-hamburger-inner::after {
        height: 1px;
    }

    Best regards,
    Rikard

    #1344133

    Thank you @Rikard

    The lines are thinner, perfect. Is there a way to change the icon’s size as well?

    Thank you

    #1344160

    Hi,

    Thanks for the update. The burger menu is actually not an icon, so I’m not sure I understand what you mean. Do you want less width and height? If you could explain your intentions a bit further, then it will be easier for us to give you some CSS to use.

    Best regards,
    Rikard

    #1344166

    Hi @Rikard,

    Sorry. I thought it was an icon.

    Yes, I would like to reduce the width/height of the burger menu by 20% or so.

    #1344201

    Hi,

    Please try this CSS as well:

    .av-hamburger-box {
        width: 25px;
    }
    
    .av-hamburger-inner::before, .av-hamburger-inner::after {
        top: -6px;
    }

    Best regards,
    Rikard

    #1344498

    Hi @Rikard.

    The last bit of the code, to decrease the spacing between the links did not work. One line disappears and there will be only 2 lines in the burger icon.

    #1344535

    Hi,

    Please try this CSS instead:

    .av-hamburger-box {
        width: 25px;
    }
    
    .av-hamburger-inner::before {
        top: -6px;
    }
    
    .av-hamburger-inner::after {
        top: 6px;
    }

    Best regards,
    Rikard

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