This may sound silly, but i am new to this so be gentle, i am currently having a problem with the links i have created in a html file. i am using an external CSS which i created to change the colour of the links, while the hover and visited aspects work, im having problem changing the actual link colour from the default blue, heres some of the code below,
html part of the code:
<a href="index.html"><style="color: rgb(0, 46, 33);">home</style></a> <img src="divider.png" style="width: 1px; height: 20px;" ALIGN=ABSMIDDLE>
<a href="about.html">about</a> <img src="divider.png" style="width: 1px; height: 20px;" ALIGN=ABSMIDDLE>
<a href="products.html"><style="color: rgb(0, 46, 33);">products</style></a> <img src="divider.png" style="width: 1px; height: 20px;" ALIGN=ABSMIDDLE>
<a href="islam.html"><style="color: rgb(0, 46, 33);">stuff</style></a> <img src="divider.png" style="width: 1px; height: 20px;" ALIGN=ABSMIDDLE>
<a href="contacts.html"><style="color: rgb(0, 46, 33);">contacts</style></a>
so basically thats the links and in between each link is an image.
external CSS:
<!--
a {text-decoration:none}
//-->
<style type="text/css">
A:link {color: green}
A:visited {color: green}
A:active {color: none}
A:hover {color: red;}
</style>
and thats it, i cant seem to understand why it wont change colour from the original blue, as i mentioned earlier, hover and visited works, any help is appreciated,
thanks,