• The hamburgermenu on tablet/phone is confusing when using a dropdow menu. It seems that you should click the items shown, but in fact you must click the +-sign at the right ….

    How can I change the color and position of the hamburger?

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

Viewing 1 replies (of 1 total)
  • Firstly,
    For hamburger menu position and color, you can add this CSS inside Customize > Additional CSS:

    @media screen and (max-width: 768px) {
        .site-branding .site-title a {
            font-size: 150%;
        }
        .tg-header-action-list .tg-header-action__item.tg-mobile-toggle .tg-icon-bars {
            color: #3dbf01;
        }
    }

    Regarding submenu, since clicking the menu item should open the link, it is not convenient to open submenu on clicking it and hence added the icon. Thanks.

Viewing 1 replies (of 1 total)
  • The topic ‘hamburgermenu’ is closed to new replies.