How do I change the color of the Bullets using <UL> style of list???
Printable View
How do I change the color of the Bullets using <UL> style of list???
try this
:)Code:<head>
<style type="text/css">
LI.list1 {color:red}
.blacktext {color:black}
</style>
</head>
<body>
<ul>
<li class="list1"><span class="blacktext">This is a red bullet</span>
</ul>
</body>
There's also list-style-image in CSS.
Thats whats in the post above mate.
No, it isn't -there's specific CSS applicable to lists:Quote:
Originally posted by Pc_Madness
Thats whats in the post above mate.
Code:ol {
list-style-position : inside;
list-style-type : square;
list-style-image : url(fileburst.gif);
}
<style type="text/css"> - That be the Start of a Inbuilt Style Sheet
Well I only wanted to change the color, as the first post said.