Help with Image Borders

Zev

New member
I'm having a problem with image borders. I want every image on my website to have the border 1px solid black EXCEPT my banner (which is in my DWT file and appears on top of every page).

If I put img{border: 1px solid black} in my CSS file and style="border:0px" on my banner in the DWT file, it still has a border.

How can i have a border on every image in my website exceprt the banner?
 
If your banner has an id :

img {border:1px solid black;}
#banner {border:none;}

or if your banner has just a class :
img {border:1px solid black;}
.banner {border:none;}

It's about the priority of selectors.

Hope this help :-)
 
Back
Top