Removing bullets in Twenty Eleven Ephemera
-
I’d like to remove the bullets from the Twenty Eleven Ephemera widget
I am using this css:
.wf-active
.widget_twentyeleven_ephemera ol {
list-style:none;
}Is there a more elegant way to do this? My approach seems to leave a 1-2px indent that I’d like to get rid of…
Signed, Very Anal Retentitve. :-D
The blog I need help with is: (visible only to logged in users)
-
The class “wf-active” is added for custom WordPress.com fonts. I usually recommend using “!important” to override that because it keeps the CSS more flexible.
There’s a 5px left padding on those list elements. You can remove it by adding this to your Appearance → Custom Design → CSS page:
.widget_twentyeleven_ephemera .widget-entry-title { padding-left: 0 !important; }
- The topic ‘Removing bullets in Twenty Eleven Ephemera’ is closed to new replies.