.noshadow {box-shadow: none; border:none!important; background:transparent!important; webkit-box-shadow: none;
moz-box-shadow:none;}
]]>
also if you use both classes in one selector ie “[class*=”wp-image”].noshadow”, “[class*=”wp-image”].noshadow:hover” you can lose the !important on the border and background rules since the [class*=”wp-image”] is adding the box-shadow and the border to all images. By using both selectors in one you are making sure that the [class*=”wp-image”] isn’t overriding it in other style sheets (responsive or bootstrap) as well.
Try using “none” rather than transparent and border: 0 if that still isn’t giving you what you want.
]]>