Quote:
Originally Posted by kosstr12
There is a blue border around my links on http://undyingtragedy.5u.com i know it means that the image is a link, but i dont like it...How do i get rid of it?
|
Hello kosstr 12.
Perhaps this will help. I am not very well up in this but thought it might be useful.
Found at:
http://www.w3schools.com/css/pr_pseudo_link.asp
effpeetee
Definition
The :link pseudo-class adds a special style to an unvisited link.
Examples
A link that is active, visited, unvisited, or when you mouse over a link can all be displayed in different ways in a CSS-supporting browser:
a:link {color: #FF0000} /* unvisited link */
a:visited {color: #00FF00} /* visited link */
a:hover {color: #FF00FF} /* mouse over link */
a:active {color: #0000FF} /* selected link */
Note: a:hover MUST come after a:link and a:visited in the CSS definition in order to be effective!!
Note: a:active MUST come after a:hover in the CSS definition in order to be effective!!
Note: Pseudo-class names are not case-sensitive.
Note: Pseudo-classes can be also be combined with CSS classes