2

我喜欢 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; }
4

3 回答 3

2

important以您的风格尝试使用此 css :

.noborder {
    border: medium none !important;
}
于 2013-02-08T18:43:39.667 回答
1

由于未知原因,style.css不包括在内。我必须 ftp 进入该站点并erudite.css直接编辑:

.entry-content img.no-border {border:0 none; padding:0; margin:0;}
于 2013-02-09T02:50:05.487 回答
0

边框是给父 div 所以即使你给了border:none; 属性添加到您的 img 标签,这将不起作用。您应该从类条目内容(即父 div)中删除边框,而是将边框添加到您想要边框的图像中。

于 2013-02-08T07:02:43.403 回答