1.

Solve : Having trouble making my bulleted list colored?

Answer»

I have looked it up on line and everything is how to make the actual bullets different COLORS. I am wanting my whole list to be one color. The text and all. I have my css file and clueless as to what to add and where to add it. One person said li {text-color: #111111111;} but this doesn't work. I am so confused. Please some kind SOUL I need a bit of help.No IDEA who gave you that code - Pretty sure they just made it up  (text-color is not a CSS property and #111111111 is not a valid colour code.)

Instead you would USE the 'color' attribute with a valid colour code.  For example, with this HTML:
Code: [Select]<UL>
    <li>Item 1</li>
    <li>Item 2</li>
    <li>Item 3</li>
</ul>You would use this CSS to make them all red:
Code: [Select]li {
    color: red;
}
Of course you would probably want to replace "red" with the colour of your choosing or use a hexadecimal colour code: http://www.w3schools.com/tags/ref_colorpicker.asp.

You can view and play about with the example I gave above here: http://jsfiddle.net/xs2r3/



Discussion

No Comment Found