What browser are you using? It may be the browser, it also may be a problem with your CSS, if your using a list or something:
Code:
<ul>
<li>This is the first.</li>
<li>This is the second.</li>
</ul>
That bullet point color changes
Code:
<style type="text/css">
ul li{
color: blue;
}
</style>
<ul>
<li>This is the first.</li>
<li>This is the second.</li>
</ul>
So heres how to fix it(if your using lists):
Code:
<style type="text/css">
ul li{
color: blue;
list-style-type: none;
}
</style>
<ul>
<li>This is the first.</li>
<li>This is the second.</li>
</ul>
Bookmarks