如何在wordpress框架中分隔帖子?

时间:2012-08-12 05:31:18

标签: wordpress

我试图将每个帖子放在我的文字新闻网站的框架内,&我使用默认主题(Twentyeleven)。我希望我的帖子在广场上。喜欢这个主题:

See the example theme

所以,每个帖子都在一个框架(所有第四边的门户),如上面的链接。

1 个答案:

答案 0 :(得分:0)

在CSS中添加以下内容:

.post {
    border: 1px solid #c0c0c0;
    background: #ffffff;
    padding: 25px 15px 1em 15px;
    clear: both;
    overflow: hidden;
    margin-bottom: 10px;
}

这会将每个帖子放在自己的“块”中。你可以改变背景和 通过更改上述CSS代码段中的值来设置边框颜色。