adding the word MENU on mobile view
-
Hi Guys, how can I add the word MENU on mobile view between the cart icon and the hamburger menu icon. For some old people it’s not clear enough the 3 line hamburger icon is the menu. so I need to add the word MENU to it.
thanks
Hello,
Thank you for the question.
You can try to add the following code snippet to the Custom CSS section in Theme Settings to achieve this
.right-column .mobile-nav-icon {
width: 80px;
}
.mobile-nav-icon:before {
content: "MENU";
display: inline-block;
margin-right: 10px;
}
Regards