Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Stupid Newbie Question - bullet point colour? 1

Status
Not open for further replies.

hitby

Programmer
Jun 25, 2002
16
IE
Hi, After using dreamweaver for many a moon and sundry I'm actually creating my first website with a black background. This has thrown up a minor problem and I can't for the life of me figure out how to solve it. All i want to do *cringe* (don't laugh) is change the colour of the bullet points on my page, the text is all white but the bullet points stay black, therefore becoming invisible on the background. Please help me. I feel like such a luser :)

Cheers
Hitby
 
i remember having this same problem with dreamweaver 4. In the end i cheated - i created a white circle in photoshop and inserted it as an image. If you put your text and the images in a table it gives the effect of bullet points.

hope this helps....

simon
 
Cheers, I've ended up using Alt-0149 bullets and putting them in a table. Still, It would be nice to change the colour of real bullets.
Cheers for your help though

hitby
 
You can do what I do also: here's the code you can use to colour your <li> bullets:

<ul type=&quot;disk&quot;>
<li style=&quot;color: blue&quot;><font color=&quot;#ffffff&quot;>Your Text</li>
</ul>
Hope this helped!
 
<style type=&quot;text/css&quot;>
<!--
li {
color: #6666CC;
list-style: square;
}
li .content {
color: #000000;
}
-->
</style>

<ul>
<li><span class=&quot;content&quot;>ranjan</span></li>
</ul>
 
Cheers Pixelchix, i just added style=&quot;color: white&quot;
in each li item. Nice one :)

MXJunkie, I know I should be using style sheets but as of yet they might as well be written in russian.
Thanks for the info though.

Cheers
Danny

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top