WordPress/Mandigo/FAQ/How do I get rid of the star shaped bullets
From onehertz
Contents |
[edit] How do I get rid of the star-shaped bullets?
As with most cosmetic changes, the best way to do this is through the use of a custom scheme.
[edit] Removing them completely
To remove the star-shaped bullets and use the full sidebar width for widgets, edit the appropriate scheme.css file, and add the following lines at the bottom of the file:
.sidebars li {
list-style: none;
margin-left: 0px;
}
.sidebars li li {
margin-left: 15px;
}
[edit] Removing them from sidebar1 or sidebar2
To remove the star-shaped bullets and use the full sidebar width for only 1 sidebar and not both add this into HTML Inserts under "right before the content and sidebars area. This differs from the top widget container in that it displays on all pages, and it spans the whole layout width.":
To remove from sidebar1:
<style type="text/css">
#sidebar1 li {
list-style: none;
margin-left: 0px;
}
#sidebar1 li li {
margin-left: 15px;
}
</style>
To remove from sidebar2:
<style type="text/css">
#sidebar2 li {
list-style: none;
margin-left: 0px;
}
#sidebar2 li li {
margin-left: 15px;
}
</style>
[edit] Replacing with your own bullets
This is even simpler: just head to the scheme directory, replace star.gif with your own file, and that's it!
