Instead of just the little hamburger menu, I’d like to have the word MENU just to the right on a smart device. I looked in Customize but could not find how to add that. Thank you.
Hello there,
Try doing the below steps:
- Install and activate the TC Custom JavaScript plugin
- Go To Appearance > Custom JavaScript
- Paste the following code into the provided box
jQuery(function($) {
if( $('.mobile-menu-toggle').length ) {
$('.mobile-menu-toggle').append('<span class="menu-text">Menu</span>');
}
});
- Update
- Add this CSS code to Appearance > Customize > Additional CSS from dashboard.
.mobile-menu-toggle {
border-radius: 0;
padding-right: 50px;
padding: 15px 40px 15px 0;
margin-right: 40px;
}
.mobile-menu-toggle .mobile-menu-toggle_lines {
width: 40px;
}
.mobile-menu-toggle .menu-text {
position: absolute;
top: 0;
left: 43px;
font-size: 22px;
text-align: right;
}
Regards,
Kharis
Kharis thanks. Not sure this works like we want. First, how can I change the color? Also, “MENU” seems to stick out to the right, and the rest of the site (under) is slid over to the left (isn’t full screen because the way “MENU” is formatted. Maybe you can look at it and see what I mean. Thank you.
Steve