I have custom menu in a widget area in the left column on my pages and I can’t seem to remove the bullets, I searched the forum and tried the code below.
#top .widget_nav_menu ul ul li:before {
content: “”;
}
Can I change the colors for different menu widgets?
Thanks
Frank
Hi Frank,
Can you post a link to your website please?
Regards,
Josue
Hi!
Please use this on Quick CSS:
#top .widget_nav_menu ul ul li:before {
content: "";
position: absolute;
top: 5px;
}
#top .widget_nav_menu ul ul li a {
padding: 6px 0px 6px 0px;
}
#top .widget_nav_menu ul li a {
padding-left: 8px;
}
#top .widget_nav_menu ul ul li a {
padding-left: 8px;
}
#top .widget_nav_menu ul ul li a, #top .widget_nav_menu ul li a {
background: green;
margin-bottom: 2px;
}
Best regards,
Ismael
Hi Ismael, thanks for the code but here’s an image of what the site shows:
If I need to add more code, please let me know.
Hi!
Please post a link to your website and we’ll check which code is missing.
Cheers!
Peter
Hey!
Please use this:
#nav_menu-2 ul.disc, #nav_menu-2 .entry-content-wrapper ul {
list-style: none outside;
}
.main_color .widget_nav_menu ul:first-child>.current-menu-item, .main_color .widget_nav_menu ul:first-child>.current_page_item {
background: transparent;
border: none;
box-shadow: none;
}
Best regards,
Ismael
Hi Ismael I added a comma after #nav_menu-2 to the css code and now it looks perfect.
Thanks.