Hey Aikem,
From what I was able to gather you wish to style the links which you are using on your page and there are several ways you can do that so I will give a few examples:
a:link { color: #c00 } /* unvisited links */
a:visited { color: #0c0 } /* visited links */
a:hover { color: #00c } /* user hovers */
a:active { color: #ccc } /* active links */
You can also remove the default style for links by using something like this:
a,
a:link,
a:active,
a:visited,
a:hover {
text-decoration: none;
I hope that helped/answered your question. ??