Is it possible to eliminate the shadow from a specific image that is displayed multiple times on various pages of a website?
This particular image should not have any shadow.
Link to Image
The image can be found on pages like this one:
Page Link
Below is the code used to add shadows to other images across the site:
.alignnone {
border: #b9b9b9 solid 1px;
-webkit-box-shadow: 3px 3px 5px 6px #ccc;
-moz-box-shadow: 3px 3px 5px 6px #ccc;
box-shadow: 3px 3px 5px 6px #ccc;
}