• officeatgerrardstreet

    (@officeatgerrardstreet)


    Hi,

    Quite new to changing CSS so sorry if this is an obvious question!

    I’m looking to add the word ‘menu’ beside the menu icon so it’s more visible- is there a way of doing this?

Viewing 1 replies (of 1 total)
  • Never be sorry for asking ??

    You can give this CSS a try – that way you don’t have to set up a child theme and add the text in manually:

    .menu-toggle:after {
        display: block;
        content: 'Menu';
        color: black;
        position: relative;
        bottom: 20px;
        left: 30px;
    	
    }
    
    .menu-toggle {
        width: 100px;
        text-align: left;
    }

    To add the CSS, use the Additional CSS panel in the Customizer (assuming you’re running at least WordPress 4.7) or with something like the Jetpack Plugin using the Custom CSS Module.

    Should do the trick – let me know how it goes!

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