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{...}
 
Back
Top Bottom