Unlike the categories links which have classed div tages e.g.
<a class="category-top" href="http://www.orcharddirect.co.uk/shop/index.php?main_page=index&cPath=42">Fozz Lighting-></a><br>
Meaning that via css you are able to change the color of them.
the "information" links are normal links e.g.
<a href="http://www.orcharddirect.co.uk/shop/index.php?main_page=shippinginfo">Shipping & Returns</a>
This means that it is affected by:
a:visited {
color: #3300FF;
text-decoration: none;
}
The problem with changing this color is that it changes every other normal link color on the website.
How can i make the information links their own div so that i can change the color of them in css?
Any help appreciated
Cheers
Elliot



