Is there anyway I can enter some text before the menu items start.
I want to show a telephone icon and phone number before the first navigation menu item. I assume the only way I could do this would be to edit the theme files but I can not find which file the menu begins in?
Hey Andrew!
Try adding this code to the Quick CSS:
.main_menu:before {
content: "Phone Number";
position: absolute;
left: -100px;
top: 44px;
}
Adjust as needed.
Cheers!
Josue