I'm working on a woothemes.com Wordpress template (specifically the 'Simplicity' theme) and I am trying to follow the rules they set out for manipulating CSS, which word for word is:
WARNING! DO NOT EDIT THIS FILE!
To make it easy to update your theme, you should not edit the styles in this file. Instead use the custom.css file to add your styles. You can copy a style from this file and paste it in custom.css and it will override the style in this file. You have been warned! :)
Pretty obvious I think. So by following the rules, how do I effectively cancel out an entire CSS selector (I think I could manually set each selector element to 0, but is there a more elegant way of doing this?):
.entry img, img.thumbnail { margin-bottom: 10px; padding: 2px; border: 1px solid #ddd; background:#fff;
/* Box Shadow */
-moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
-webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
In pseudo code I'd write:
.entry img, img.thumbnail {
clear-all-styles;
}
But obviously that won't work :)