Wordpress网站'隐藏'删除左边距时的内容

时间:2014-08-01 01:31:24

标签: php html css wordpress

我正在使用二十四个主题调整Wordpress网站。

我已经删除了左侧边栏 - 我通过简单地注释掉php代码来做到这一点。

虽然现在删除了侧边栏div,但是当我尝试删除边距左移动所有其他内容222px时,它会隐藏内容。

这是网站

http://pacificwhiteboards.com.au/product/communicate-corporate-magnetic-whiteboards/

有什么想法吗?我有点失落。

谢谢你

詹姆斯。

2 个答案:

答案 0 :(得分:1)

寻找.site:before CSS选择器;这是注入内容,这就是你的东西。当我删除所有'.site:before'规则时,它似乎工作正常,但我不太清楚主题本身就足以说明你不需要进行其他调整。

答案 1 :(得分:0)

添加自定义css以删除空格:

.site:before {
    display: none;
}

然后,您可以将网站内容中心添加:

.full-width .site-content {
    margin:0px auto;
}
.full-width .site-content .has-post-thumbnail .entry-header {
    margin:0px auto;
}
.singular.full-width .site-content .has-post-thumbnail.hentry {
    margin:0px auto;
}

另外,我知道你没有问过它,但是我注意到你的固定标题上有一些空格,你可以用更多的CSS来摆脱它:

.masthead-fixed .site-header {
max-width: 1000px;
}

干杯!