PDA

View Full Version : Unordered List



wizard
November 8th, 2004, 02:40 AM
Hey everyone,

My question's simple: How do I change the color of the "bullet" in an unordered list?

You know, the little black cirlce that appears next to your list item... I want to change it to white.

HTML, CSS, anything.

ditt0
November 8th, 2004, 05:52 PM
Take a look at this. You can either specify a color for the font or you can use an image for the bullets.
The css:


li.one{
list-style: inside square url(bullet.gif);
}
li.two{
list-style: outside circle url(bullet.gif);
}
li.three{
color:#990000;
list-style: outside circle ;
}

ditt0
November 8th, 2004, 06:10 PM
ok this is too much for me..how do i post the html code too without having it tansformed ?http://kirupaforum.com/forums/images/smilies/happy.gif
In html it would be something like:

li class="one">text1
with all the necessary tags that keep on being transformed when i post the message lol

</LI< p>

wizard
November 8th, 2004, 09:52 PM
Lol, thanks... to show HTML code I usually just place a space in between tags.
< body>< /body>

ditt0
November 9th, 2004, 02:06 AM
cool:cool: thanks:)

[m]
November 9th, 2004, 03:43 AM
put it between [html] tags.