这是网站的CSS,它在内容之前在左侧和右侧都有空格。任何人都可以告诉我应该如何更新它,以便它可以管理网站上的左侧和右侧空间。
.site {
margin: 0 auto;
position: relative;
overflow: hidden;
}
.site-content {
float: left;
width: 65.104166667%;
}
答案 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%
}