Hello I'm using custom menu widget in my footer to add some quick links to my website's pages. By default there is a slightly darker background for each link which I'd like to remove. Is there any sort of css that could do the trick?
Also where or how do I disable the underline for the mouse hover on a link?
Here is an image of the problem (you can see it live
here)
Comments
Used this css code:
to remove light lines and background from those links, you need to use custom css:
.widget_archive ul, .widget_nav_menu ul { background: none !important; }.widget_archive ul li::after, .widget_nav_menu ul li::after { border: 0 !important; }