• Resolved mr108

    (@mr108)


    Hi,
    What Additional CSS should I use in order to add word MENU below the icon for Hamburger menu?
    Or as alternative to replace the Hamburger Menu with the word MENU?
    Note that my Menu Alignment in Customizer is on the Right.

    Website: https://meditationyoga.in/mahon/

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

    (@threadi)

    You could add this in Customizer > Additional CSS:

    .icon-menu::after {
      content: "Menu";
      display: block;
      position: relative;
      top: -60px;
      right: 40px;
      z-index: 100;
    }

    Since you have an unspeakable right-click lock, it is difficult to help you more precisely. You should still make the desired font adjustment in this code snippet.

    Whether you can replace the hamburger with something else, you would have to ask the theme developer: https://www.ads-software.com/support/theme/anima/ – possibly this can also be solved via child theme.

    hemalmaniyar

    (@hemalupadhyay)

    Hi
    I am suggesting here for updating your menu icon with Menu text
    Add a class “menu-ch-text” on the icon.

    Add css

    i.icon-menu.menu-ch-text:before {
        content: 'MENU';
    }

    That will update MENU text to the hamburger.
    Hope that helps!
    Thanks.

    Thread Starter mr108

    (@mr108)

    @threadi
    Thanks! It looks like it’s working fine – see the page https://meditationyoga.in/mahon/
    I disabled the right-click lock now so if you have any additional tips I’ll appreciate it very much.
    For example I’d like to make the font of the ‘Menu’ smaller and regular (not italic).

    threadi

    (@threadi)

    You have already made the font smaller I see. If you want it to be a bit smaller and no longer italic, use this code:

    .icon-menu::after {
      content: "Menu";
      display: block;
      position: relative;
      top: -60px;
      right: 16px;
      z-index: 100;
      font-size: 0.6em;
      font-style: normal;
    }

    Here I have also made the position of the text flush with the hamburger on the right again.

    Thread Starter mr108

    (@mr108)

    @threadi
    Super! Thanks a lot!

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Modify Hamburger Menu’ is closed to new replies.