Page 1 of 1

Problem with bullet color

Posted: Mon Oct 06, 2003 9:42 am
by szms
I am using the following code for showing a list with black back ground color and white font. But my bullet is not visible. I am expecting white bullet. How to do that?

Code: Select all

<body bgcolor = "black">
<p style="font-family:verdana;font-size:100%;color:white">
In order to get the best performance from this web site, it is recommended for the user to have the following feature in the computer:
<ul>
<li>
<p style="font-family:verdana;font-size:100%;color:white"> Borwser: Internet Explorer 6.X </p>
</li>
<li>
<p style="font-family:verdana;font-size:100%;color:white"> Screen Resolution : 1024 X 768 </p>
</li>
</ul>
</p>

</body>

Posted: Mon Oct 06, 2003 10:46 am
by Cruzado_Mainfrm
first of all, the attribute bgcolor is deprecated, use style="background-color: white"

and to the point:
the bullet get's the color from the color attribute:
style="color: white;"
and u have to use it like this:

Code: Select all

<ul style="color: white;"></ul>
or

Code: Select all

<li style="color: white;"></li>