Removing bullets from sidebar
-
Hi there,
I’d like to remove the bullet points on the sidebar menu of my site, which uses the Blaskan theme. Is this possible? I’d be grateful for any help.
The url is http://warpresource.wordpress.com/
The blog I need help with is: (visible only to logged in users)
-
Hi there,
I see that you have been editing your CSS recently. So I checked it out and you just need to change/add a few things to remove the bullets. I see that you put this:
#sidebars li { list-style-type: none; }Change #sidebars to #menu-about-warp:
#menu-about-warp li { list-style-type: none; }That will remove it for the first menu. For the Archives widget and the Other News widget add this:
#archives-4 li, #nav_menu-4 li { list-style-type: none; }So if you want to consolidate everything, you can just add this:
#archives-4 li, #nav_menu-4 li, #menu-about-warp li { list-style-type: none; }Cheers!
-
-
- The topic ‘Removing bullets from sidebar’ is closed to new replies.