flugennock
Member
Posted 1 month ago #
My theme is WPComic; the site is at http://www.sinkers.org/stage .
What I need to do is to remove the bullets from the sidebar items -- archive, links, etc. -- although I understand that these are formatted as an ordered list, so I may be stuck with them.
Any ideas?
TIA,
mf
Hi,
You need to edit the sidebar.php file of your blog and remove the bullets code from there. Bullets code should be like:
ul
li /li
/ul
Thanks,
Shane G.
add this to your stylesheet:
#beta li { list-style-type: none; }
The above CSS leaves the content and removes the bullets.
Shane's suggestion remove the items altogether, not just the bullets.
flugennock
Member
Posted 1 month ago #
@stvwlf:
Thanks for the tip. Just one question: is there any particular spot in my stylesheet where I need to insert that code?
Thanks,
mf
Adding it to the very bottom of style.css is usually best.
flugennock
Member
Posted 1 month ago #
Aha. Perfect!
Thanks, esmi.
mf