Latest Lists

Help with CSS please!?

This is from my stylesheet: ul {color:#000; list-style-position: inside; list-style-image: url(Graphics\bullet.gif);} This is my HTML: <ul> <li>The language or languages involved</li> <li>The required standard (Gold or Silver)</li> <li>The complexity of the text</li> <li>The nature of the vocabulary involved</li> <li>The deadline</li> </ul> Why is list-style-image not working?

Public Comments

  1. ul { color:#000; list-style-position: inside; list-style-image: url('Graphics\bullet.gif'); } copy and paste that code in and see if it works Ps: That might be the problem but ur code dosn't really make sense to me, if that code dosn't work then revise ur code, or just email me and i will try and help u
  2. I tested this and what fixed it for me was a forward slash "/" in the URL: ul {color:#000; list-style-position: inside; list-style-image: url(Graphics/bullet.gif);} FYI back slashes (\) are used only in a windows system. When you place them on a webserver they need to be foward slashes (/) ~n
Powered by Yahoo! Answers