CSS Hyperlink Styling - text + images

Soldato
Joined
12 Jun 2005
Posts
5,361
Is there anyway to put stying on text hyperlinks that doesn't style image hyperlinks without having to put a class on all the paragraphs just with text in?
 
Last edited:
Turns out that did work, but it what I was doing wrong was this:

Code:
.class a img{...}
.class a:hover image{...}

when it should be:

Code:
div.class a img{...}
div.class a:hover img{...}
 
just use

Code:
a:hover{
styles of hovering text links
}
a:hover img{
undo everything you set in "a:hover"
}

Use the cascade to leave the images alone.
 
Back
Top Bottom