Reputation: 123
The bullet points at www.example.com are in the form of guillemets (angle quotes ») instead of the regular black circles. Now, I specifically wanted the angle quotes on the sidebar, so that's working, but I don't want them on the body content of the page...
Can you figure out why the bullets are still acting like they're in the sidebar and how can I make them normal? I've tried list-type:none already...
Upvotes: 0
Views: 927
Reputation: 91
Because they are not set with list-style-type
(that doesn't allow quotes) but with generated content
Just remove .entry ul li:before,
from the declaration
.entry ul li:before, #sidebar ul ul li:before {
content: "» ";
}
at line 373 of style.css
If you want bullets in the content, edit line 369 of style.css
this way:
html > body .entry li {
list-style-type: disc;
margin: 7px 0 8px 10px;
padding-left: 10px;
}
If you want you can adjust margin and padding to fit to your needs
Upvotes: 1