我想使柱子之间的线更粗,更清晰。现在他们很好。
我尝试了这段代码,并在wordpress论坛上找到了它,但是它不起作用:
.list-view #content .hentry.has-post-thumbnail{
border-top: 100px solid rgba(1, 0, 0, 1);
padding-top: 100px;
}
谢谢。
最佳答案
您的样式无效,因为该页面上的所有帖子都没有has-post-thumbnail
类,删除该类将显示较粗的边框
.list-view #content .hentry
{
border-top: 100px solid rgba(1, 0, 0, 1);
padding-top: 100px;
}
关于php - WordPress的二十四:使职位之间的间隔更厚,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/25266394/