Hi,
I've only just started playing about with CSS so there might be a really obvious answer to this.
In my style sheet i have the following to style the hyperlinks on the page:
Only problem is, any images on the page that are also link get the hover style applied to them, so they get an ugly blue border around them when you hover over them. How can i stop this happening?
Cheers
Luke
I've only just started playing about with CSS so there might be a really obvious answer to this.
In my style sheet i have the following to style the hyperlinks on the page:
Code:
a:link {color: #0000ff;}
a:visited:hover {color: #FFD; background-color: #0000ff;}
a:link:hover {color: #FFD; background-color: #0000ff;}
Cheers
Luke
Comment