View Single Post
  #6  
Old 03-01-2010, 02:18 PM
 
jdiehl jdiehl is offline
 

eXpert
  
Join Date: Dec 2003
Location: Kansas City, MO
Posts: 270
 

Default 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.
__________________
Jason Diehl

Finding Cures for Your Online Headaches: http://www.internetmedicineman.com/
Reply With Quote