Replace hamburger icon with text

Hi. I’d like to replace the default discourse hamburger icon with the text ‘menu’ and can’t quite seem to get any of the methods I’ve found to work. I don’t mind whether it’s done via CSS or by using the scripting API, any tips would be appreciated.

4 לייקים

Try:

#toggle-hamburger-menu {
    &:before {
        content: "Menu";
    }
    svg {
        display: none;
    }
}
15 לייקים

Amazing - that did the trick, thank you!

5 לייקים

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.