I’ve created a widget menu, then used “content elements” – “widget area” to add this widget (with menu in it) to a page, sadly I can’t figure out how to remove the bullet points that are generated.
I’ve tried this in the quick css area.
#top .widget_nav_menu li:before {
content: none;
}
Hi BSHosts!
Please add following code to Quick CSS
#top .widget_nav_menu ul ul li:before { display: none; }
Cheers!
Yigit
That didn’t make any difference, but this did:
ul.disc, .entry-content-wrapper ul {
list-style: none outside none;
}
(However this removes all bullets on the whole page – which wasn’t the plan)