Re: Bullet Text not working
Also in the same file your margin and padding are zero'd for ul/li so even clearing the list-style:none results in a bullet you can't see. You should add something like this to the end of your main.css:
div.content ul {
padding-left: 20px;
list-style: disc;
}
See if that gets you situated, should only fix lists in the content area by doing that.
|