I set a style for images as follows:
Which works fine to style all the images in the content DIV on my site, but I have an image of a PDF icon which I don't want a border around which has been inserted into the same DIV so I tried setting a CLASS called .pdf as followsdiv#content img {
border-width: 1px;
border: 1px solid black;
margin-right: 20px;
float: left;
}
thinks that would override the other style, but it doesn't. I am fairly new to css and I would appreciate some help, as I'm sure there is a simple soultion to want I am trying to achive??.pdf {
border-style: none;
border-width: 0;
}
Thanks

