http://globaldigitalcitizen.com/blog/
The lists on the right and in the footer are standard in the theme. I’d just like to remove the bullets and the indents.
Looks like you already fixed it. The bullets are supposed to be pencils 🙂
Nope, not fixed. The little arrows are in front of each item and the are indented. Really want to get rid of this.
This should remove all those little arrows/indents….
Try pasting this into your Custom CSS :
/*Remove Arrows and Indents on Widgets */
.widget.widget_archive li:before, .widget.widget_categories li:before, .widget.widget_calendar li:before, .widget.widget_pages li:before, .widget.widget_links li:before, .widget.widget_meta li:before, .widget.widget_recent_entries li:before, .widget.widget_recent_comments li:before, .widget.widget_nav_menu li:before, .widget.widget_rss li:before {
color: #F78C40;
left: -11px;
position: relative;
transition: left 0.2s ease 0s;
}
Ah. Got you now. You need:
.widget li:before {
display: none;
}
in your Custom CSS panel.
@bjscott: thanks for leading me in the right direction 🙂
p.s. When you add code/CSS, can you put it in backticks? (See at the bottom of the reply panel.) Otherwise it can sometimes mess up these pages.
Thanks electricfeet, that did it.