Is it possible to add some text to the little button (gf-menu-toggle) that's used to toggle navigation when in responsive mode? E.g. I wan to add 'MENU' alongside the 3 lines.
Thanks for the help. I've got a related question, is it possible to switch the standard menu-toggle with the 3 icon bars for a selfmade logo or button? If so, how to implement it?
One of my standard CSS snippets is to put 'Menu' text instead of the three horizontal lines. I prefer this as it requires no download of an image which reduces page loads on mobile devices.
Here is the code
/* style for mobile menu background color and position */
.gf-menu-toggle {
margin-top: 100px;
background-color: #947156;
background-image: linear-gradient(to bottom, #947156, #D5A37C) !important;
}
/* style for mobile menu background color and position on hover */
.gf-menu-toggle:hover {
background-color: #BA8D45;
background-image: linear-gradient(to bottom, #D5A37C, #C0926F) !important;
}
/* hide default horizontal bars on mobile menu */
.gf-menu-toggle .icon-bar {
visibility: hidden;
background-color: #eeeeee !important;
}
/*Add Menu text to responsive menu toggle button. */
.gf-menu-toggle:after {content:'Menu';float: left;font-size: 0.5;color:#ffffff;}
.gf-menu-toggle:after { margin-top: -15px;}
About the only thing I change is the background colors and the margins depending on where I want the menu to display vertically. It works great!