I like the Erudite Wordpress theme. However I don't want border for certain type of img, i.e. banners. I still want border for other images in the media library.
How can I edit the style.css to remove border only for banners?
For example, in this page here.
The image is:
<img class="noborder" src="http://www.clomputing.com/wp-content/uploads/2013/02/available-on-appstore.png" width="280" height="80" />
And I tried the following in the style.css:
img.noborder { border:none; }
but the border is still there.
The full style.css is:
.aligncenter {
display: block;
margin-left: auto;
margin-right: auto;
}
.alignleft {
float: left;
}
.alignright {
float: right;
}
img.noborder { border:none; }

Appearance>Editortag. How can I make Wordpress include my edited style.css? – ohho Feb 8 at 7:16