tmonkeygirlj13
10-28-2006, 04:40 AM
Is it possible to make the text in bulleted lists bold? And also, is it possible to change the color of the text? Sorry if this is already covered somewhere else, but I couldn't find it...
|
View Full Version : Bold bulleted lists tmonkeygirlj13 10-28-2006, 04:40 AM Is it possible to make the text in bulleted lists bold? And also, is it possible to change the color of the text? Sorry if this is already covered somewhere else, but I couldn't find it... angelic.deception 10-28-2006, 06:19 AM If you're using a list like this.. <ul> <li>Item One</li> <li>Item Two</li> <li>Item Three</li> </ul> Then you can use CSS, like this.. ul li { font-weight: bold; color: #003366; } Hope that helps. =) tmonkeygirlj13 10-28-2006, 08:45 PM alright, thanks! angelic.deception 10-28-2006, 09:17 PM No worries. =) |