我喜欢 Erudite Wordpress 主题。但是我不希望某些类型的 img 边框,即横幅。我仍然想要媒体库中其他图像的边框。
如何编辑 style.css 以仅删除横幅的边框?
例如,在此页面中。
图像是:
<img class="noborder" src="http://www.clomputing.com/wp-content/uploads/2013/02/available-on-appstore.png" width="280" height="80" />
我在style.css中尝试了以下内容:
img.noborder { border:none; }
但边界仍然存在。
完整的 style.css 是:
.aligncenter {
display: block;
margin-left: auto;
margin-right: auto;
}
.alignleft {
float: left;
}
.alignright {
float: right;
}
img.noborder { border:none; }