Is it possible to change the dot that appears to mark a new line when you use an unordered list in html to a custom image? 
hot to change the <ul><li> default dot?
Hey, yes it's really easy to do with CSS:
You can specify the shape (which will appear while the image loads), the position and an image url. There's more info available at http://www.htmldog.com/reference/cssproperties/list-style/
| Code: |
| li {
list-style: circle outside url('/images/bullet_a.png'); } |
You can specify the shape (which will appear while the image loads), the position and an image url. There's more info available at http://www.htmldog.com/reference/cssproperties/list-style/
hey thankx a lot!
i tried to google it somehow, but i didnt really know what to search for..
thanks!
i tried to google it somehow, but i didnt really know what to search for..
thanks!
