|
-
Apr 26th, 2002, 09:29 PM
#1
Thread Starter
PowerPoster
Bullets & HTML
How do I change the color of the Bullets using <UL> style of list???
-
Apr 26th, 2002, 10:24 PM
#2
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>
Laugh, and the world laughs with you. Cry, and you just water down your vodka.
Take credit, not responsibility
-
Apr 29th, 2002, 10:54 AM
#3
Black Cat
There's also list-style-image in CSS.
Josh
Get these: Mozilla Opera OpenBSD
I have books for sale: "MCSD in a Nutshell" and "VB Distributed Exam Cram" - PM me for details. Will also trade for a decent ATX Pentium 2 MB/CPU/RAM combo.
-
Apr 29th, 2002, 11:59 PM
#4
Thread Starter
PowerPoster
Thats whats in the post above mate.
-
Apr 30th, 2002, 11:58 AM
#5
Black Cat
Originally posted by Pc_Madness
Thats whats in the post above mate.
No, it isn't -there's specific CSS applicable to lists:
Code:
ol {
list-style-position : inside;
list-style-type : square;
list-style-image : url(fileburst.gif);
}
Josh
Get these: Mozilla Opera OpenBSD
I have books for sale: "MCSD in a Nutshell" and "VB Distributed Exam Cram" - PM me for details. Will also trade for a decent ATX Pentium 2 MB/CPU/RAM combo.
-
Apr 30th, 2002, 09:09 PM
#6
Thread Starter
PowerPoster
<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.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|