(I’ll quickly re-cap as the support was so fast that the ticket was closed before I could check stuff).
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;
}
Upon the last ticket I tried adding:
#top .widget_nav_menu ul ul li:before { display: none; }
As suggested by yigit
That didn’t make any difference, so I added:
ul.disc, .entry-content-wrapper ul {
list-style: none outside none;
}
Which did work as mentioned – but of course this removes the ul from all standard bullets on every page.
You’re help much appreciated – ps impressed with the speedy response!
I guess in an ideal world the menu would work the same when using the “content elements” – “widget area” to add it as it does when it is in the sidebar.
Hey!
Sorry it was me closing it :)
Can you post the link to your page where you have the menu so i can take a look?
Best regards,
Yigit
Hey!
Please add following code to Quick CSS
.menu-wills-container ul {
list-style: none;
}
It will remove the bullets on private client page
Regards,
Yigit
Excellent thanks.