Private: Home › Forums › WordPress Themes › Elvyre – Retina Ready WordPress Theme › Formatting footer menu widget › Reply To: Formatting footer menu widget
February 24, 2015 at 8:04 pm
#2262
Participant
Hello,
To remove the “>” icon from lists, use the following CSS code (add it to “Elvyre options -> Appearance – Custom CSS” box”):
.widget li {
background: none !important;
}
To set the first list level text to be bold, use the following code:
.widget ul > li,
.widget ul > li > a {
font-weight: bold;
}
Robert