How to replace hamburger with word menu?
-
I want to either remove the hamburger icon and replace it with the word menu, or just add the word menu to the right. (Want to see it both ways before deciding.
I’ve been playing with this in CSS to add the word hamburger to the right:
button.secondary-toggle {
width: 120px;
height: 60px;
vertical-align: top;
border-color:red;
}button.secondary-toggle:after {
content: “MENUU”;
float: right;
/* margin: -16px 0 0 0; */
}I can tell I’m in the right area because of the red border. I’m in over my head on this and would appreciate any suggestions.
Also, I do have a child theme and have already violated the sanctity of header.php. If there’s a way to do it in header.php I’m open to that. Would that be a better cross-browser solution?
Thanks!
Mike
- The topic ‘How to replace hamburger with word menu?’ is closed to new replies.