All I want is to be able to change the color of a bullet in a list to a light gray. It defaults to black, and I can't figure out how to change it.
I know I could just use an image; I'd rather not do that if I can help it.
|
1
|
|||||
|
|
|
The bullet gets its color from the text. So if you want to have a different color bullet than text in your list you'll have to add some markup. Wrap the list text in a span:
Then modify your style rules slightly:
|
||
|
|
|
There is a really good article on this at JohnNemec.com - maybe that might clear up some confusion. |
||
|
|
|
|
Hello maybe this answer is late but is the correct one to achieve this. Ok the fact is that you must specify an internal tag to make the LIst text be on the usual black (or what ever you want to get it). But is also true that you can REDEFINE any TAGS and internal tags with CSS. So the best way to do this use a SHORTER tag for the redefinition Usign this CSS definition:
And this html code:
You get required result. Also you can make each disc diferent color:
|
||
|
|
|
|
You could use CSS to attain this. By specifying the list in the color and style of your choice, you can then also specify the text as a different color. Follow the example at http://www.echoecho.com/csslists.htm. |
||
|
|
|
|
|
|||
|
|
|
|
You can do this without using an image. The color of the bullet is controlled by the style > color property. Unfortunately this will also change the color of the text inside the bullet, so you will need to wrap that inside another tag to change it back. Example:
|
||
|
|
|
|
|
||
|
|
|
|
As per W3C spec,
But the idea with a span inside the list above should work fine! |
||
|
|
|
|
|
||
|
|
|
|
Just use CSS:
|
||
|
|
|
You'll want to set a "list-style" via CSS, and give it a color: value. Example: ul.colored {list-style: color: green;} |
||
|
|
|
|
Wrap the text within the list item with a span (or some other element) and apply the bullet color to the list item and the text color to the span. |
||
|
|
|
|
the big problem with this method is the extra markup. (the span tag) |
||
|
|