我想让帖子之间的线条更粗,更明显。现在他们很好。
我尝试了这个代码,我得到了wordpress论坛,但它不起作用:
.list-view #content .hentry.has-post-thumbnail{
border-top: 100px solid rgba(1, 0, 0, 1);
padding-top: 100px;
}
感谢。
答案 0 :(得分:2)
您的风格无效,因为该网页上的所有帖子都没有has-post-thumbnail
类,删除后会显示较粗的border-top
.list-view #content .hentry
{
border-top: 100px solid rgba(1, 0, 0, 1);
padding-top: 100px;
}