Click to See Complete Forum and Search --> : Use Symbol in Unordered List instead of bullets


Brachole
11-15-2006, 11:47 AM
I'd like to use the "&raquo" (»)symbol instead of the conventional dot or aquare in an Unordered List in CSS.

Is the a way to include that symbol?

.FeaturesOL {
list-style-type: square;
}

BonRouge
11-15-2006, 11:57 AM
You could use an image.

WebJoel
11-15-2006, 02:34 PM
I'd like to use the "&raquo" (»)symbol instead of the conventional dot or aquare in an Unordered List in CSS.

Is the a way to include that symbol?

.FeaturesOL {
list-style-type: square;
}

Yes, using an image, and the correct declaration & selector for it: :)


.FeatureOL {
list-style-image:url(name.gif);
}