CSS / Wordpress如何管理内容空间

时间:2016-07-19 16:35:15

标签: css wordpress wordpress-theming

这是网站的CSS,它在内容之前在左侧和右侧都有空格。任何人都可以告诉我应该如何更新它,以便它可以管理网站上的左侧和右侧空间。

.site {
        margin: 0 auto;
        position: relative;
        overflow: hidden;
    }
    .site-content {
        float: left;
        width: 65.104166667%;

    }

enter image description here

1 个答案:

答案 0 :(得分:0)

它的.container控制标题后面的内容宽度

 .container{
    // css code here controls the width of your content-sidebar
    //for example: 'width: 100%;'
    }

之后你可能想要增加你的#primary宽度以及修复位置。

#primary{
// something like width:78.5%
}