<ol>
<li>test</li>
<li>test</li>
</ol>
will show as:
- test
- test
I want to have numbers coloured and text black!
I can edit the css, but I do not have access to the HTML.
|
|
|
|
|
|
|
Not sure if this works but i think it should:
edit
You will need the jQuery library for this. |
||||
|
|
|
This should do what you're looking for: http://archivist.incutio.com/viewlist/css-discuss/67894 HTML
CSS
Except you'll want to change the color and background according to your design. This next one is overkill, but gives you a great deal of information on how to style lists: http://print.wordpress.com/2006/02/22/css-beautifully-numbered-lists/ -Adam |
||||||||
|
|
|
The CSS spec gives an example of doing just this. Unfortunately, while it works on Firefox 3, it doesn't appear to work on IE7:
|
||
|
|
|
|
i can edit only css, but not html |
||||||||
|
|
|
To expand a bit on what others said, as well as additional question clarifications, there is no built-in way of doing this from CSS w/o touching the HTML. If you are looking to keep the HTML as clean and semantic as possible, I would do the styling using javascript, probably with a library like jQuery, to adjust the DOM so that the css can be more effective. I would caution, however, using color to convey info. I'm not sure what the purpose of the colored numbers is, but using color to display information leaves colorblind users out of the loop and is a big no no for accessibility. |
||
|
|
|
|
From an answer to a similar question I found elsewhere:
But for now it looks like you'd have to add the |
||
|
|
|
|
This is easy, as long as you don't want to assign different colours to different list item numbers. No HTML modifications necessary. Might not work in 100% of browsers though..
|
||