Latest Lists

How do I put the bullet images in unordered list CSS?

Here is what I have and this is an external style. ul {list-style-type:none;list-style-image:url();} I do not know where to get the bullet images and how do make them show up on the page.

Public Comments

  1. You need to remove "list-style-type:none" That is the part of your that tells the browser what to use for bullets. Leaving it blank will give you a normal, solid bullet. You can also choose from a couple of other choices, but you have to get rid of your "list-style-type:none: directive. You don't have to "get" the images, the browser already knows what to do for unordered lists.
  2. There is mistake in your coding. Your code is: ul {list-style-type:none;} There is a fault is your declaration. You should remove the value of your declaration.(mean remove none) and put this code: 1)Opt: ul {list-style-type:circle;} There will be a list that have many options(like circle,square and upper-roman etc.) you can choose as par your desire. If you want use bullet images, use this code: 2)Opt:{background-image:url img.jpg; background-position:left;}
Powered by Yahoo! Answers