Hi wildaw,
Add the following code to the style.css file of your theme file.
.widget li {
list-style-type: none;
}
Hope this will help.
Thanks
Thread Starter
wildaw
(@wildaw)
Sampression, I thought I replied months ago, but I guess I didn’t. This worked perfectly to remove the bullets from the widgets.
This code alone, however, didn’t remove the padding that came along with the bullets. That’s really not a problem, but I couldn’t figure it out. If you’re interested, you can see what I mean in the sidebar widget Latest Galleries at hissing lawns.
Thanks!
This will remove the padding:
.widget ul {
padding: 0;
}
Thread Starter
wildaw
(@wildaw)
Thanks! I will try that shortly.