• Hi,

    The hamburger icon in header, style full screen, is not very visible on large screens.
    How can I increase the size of the icon, or place text ‘menu’ alongside the icon?

    The page I need help with: [log in to see the link]

Viewing 5 replies - 1 through 5 (of 5 total)
  • Hello,

    Add the below CSS code to the Customize > Custom CSS section to increase the size. Adjust the parameters as per your need. Also, there is no option to add Menu text alongside the icon.

    #site-header.full_screen-header .menu-bar .ham, #site-header.full_screen-header .menu-bar .ham:before, #site-header.full_screen-header .menu-bar .ham:after {
        width: 40px;
        height: 3px;
    }
    #site-header.full_screen-header .menu-bar .ham:after {
        top: 15px;
    }
    #site-header.full_screen-header .menu-bar .ham:before {
        top: -15px;
    }
    Thread Starter rensver

    (@rensver)

    Nice! Only thing is the close-menu cross, it deforms a little.

    Use the below CSS code to fix the close menu cross –

    #site-header.full_screen-header .menu-bar.exit .ham:after {
        transform: translateY(-15px) rotateZ(45deg) !important;
    }
    #site-header.full_screen-header .menu-bar.exit .ham:before {
        transform: translateY(15px) rotateZ(-45deg) !important;
    }
    Thread Starter rensver

    (@rensver)

    Your the best, many thanks!!!!

    You’re welcome!

Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘Changing menu icon on desktop’ is closed to new replies.