Saturday, 15 February 2014

css - How to remove border of img for banners only in a Wordpress theme? -



css - How to remove border of img for banners only in a Wordpress theme? -

i erudite wordpress theme. don't want border type of img, i.e. banners. still want border other images in media library.

how can edit style.css remove border banners?

for example, in 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 tried next in style.css:

img.noborder { border:none; }

but border still there.

the total style.css is:

.aligncenter { display: block; margin-left: auto; margin-right: auto; } .alignleft { float: left; } .alignright { float: right; } img.noborder { border:none; }

try css using important in style:

.noborder { border: medium none !important; }

css wordpress stylesheet

No comments:

Post a Comment