• How do I increase the icon size of the hamburger for the vertical header menu when using the ‘Closed Header’ option?

Viewing 1 replies (of 1 total)
  • Hi,

    It is not possible to increase the size of the current icon. However, you can try this code which will replace the current one with font awesome icon and you can change font-size:

    Please paste the below code in Appearance – Customize – Custom CSS/JS – CSS Code:

    .hamburger {
        display: none;
    }
    a.vertical-toggle:before {
        content: "\f0c9";
        font-family: FontAwesome;
        font-size: 30px;
        color: #333;
    }
Viewing 1 replies (of 1 total)
  • The topic ‘Increase Vertical Header Hamburger Icon’ is closed to new replies.