我确定有一种非常简单的方法可以解决这个问题,但我还没有能够解决这个问题:
我需要的内容:我需要删除我/博客页面上所有博客帖子的边框。这个边框由此链接上的图片上的红色箭头表示 - http://imgur.com/F2vR6tC。
到目前为止我做了什么:我已尝试过border:none;边框:0px;但它似乎并不适用于所有帖子。
我可以单独删除一个帖子的边框(通过复制inspect元素工具中的CSS路径),但这对于删除所有帖子上的边框并不是非常实用。每当我使用 .post-content 作为类选择器来删除所有帖子上的边框时,它都不会做任何事情。
相关网址:http://bavarianspaetzle.com/blog/
对此事的任何帮助将不胜感激。再说一遍,我确定它很简单,但我还没有找到解决方案(我已经尝试了很多我在stackoverflow上发现的东西没有效果)我将非常感激有人可以提供一些指导。
谢谢!
答案 0 :(得分:1)
更改style.css ..
第621行:
.entry-thumb img{
border:none
}
和 第650行:
.hentry .post-content, .single .hentry, .page .hentry{
border:none
}
答案 1 :(得分:0)
很简单,有很多教程可以帮助您涵盖CSS概念。
.hentry .post-content, .single .hentry, .page .hentry,
.entry-thumb img {border:0px;}
将其放在style.css
文件的最底部,或者如果没有删除边框,最后添加!important
。
.hentry .post-content, .single .hentry, .page .hentry,
.entry-thumb img{border:0px !important;}
答案 2 :(得分:0)
.hentry .post-content, .single .hentry, .page .hentry {
border: 4px double transparent !important;
}
.entry-thumb img {
border: 4px double transparent !important;
}
在style.css在线编号650或621
答案 3 :(得分:0)
从第650和621行删除
border: 4px double #ebebeb;`