Hi, Im working on a client site,
one of menus has a dot infront of each menu item, how do I delete the dot.
Links set as private content.
Alan ;)
Hey Alan,
Please try the following in Quick CSS under Enfold->General Styling:
#top .widget_nav_menu ul ul li:before {
display: none;
}
Best regards,
Rikard
Hey Rikard
Great that did it ;)
Just wondering, is it possible to set a kind of note/header in the Quick Css, to tell me what the code does. Later on I can’t remember what the different codes are doing ;)
Enjoy your day…
Hi Alan,
You can add comments in CSS using /* to open and */ to close. So your code would look like following
/* To remove dots in menus */
#top .widget_nav_menu ul ul li:before {
display: none;
}
Best regards,
Yigit
Great thank you, all done ;)