Latest Lists

Bullet points don't show up on my Tumblr page (coding custom HTML)?

I changed my theme background color from white to black and then changed all the text and such from black to white. The only problem now is that when I make lists with bullet points, the bullet points won't show up (probably because they are still black). I have examined the HTML though and as far as I can see I've changed everything text related to #fff. Can anyone tell me which part of html has to do with bullet points? Thanks.

Public Comments

  1. Try either <ul style="color: #fff;"> or <li style="color: #fff;">
  2. TRY THIS!! <ul> <li><span>item #1</span></li> <li><span>item #2</span></li> <li><span>item #3</span></li> </ul> <style> li { color: red; /* bullet color */ } li span { color: black /* text color */ } </style>
Powered by Yahoo! Answers