Stackexchnage.wordpress.com将我发送到此处是因为他们认为它更适合SO。
我有一个网站here。
在该网站上,您会看到三列。页面宽度是正确的。页面的左侧是正确的,右侧列是正确的,但正如您所看到的那样,中间列不正常。
当我在Chrome中调试时,我更改了此行...
<div class="border-wrap right in-full border bottom">
到这个
<div class="border-wrap left in-full border bottom">
...然后中心列调整大小,网站看起来应该如此。我已经尝试了几天来弄清楚它在样式表中的位置,我无法在任何地方找到它。我也搜索过header.php,也找不到它。
我需要一些方向。无法解决这个问题非常烦人。
答案 0 :(得分:0)
在CSS中查找.side-wrap
类并按如下方式对其进行编辑:
.side-wrap {
width: 205px;
position: relative;
padding: 10px 75px 0 0; /*edit this line*/
padding-top: 10px; /*REMOVE this line*/
margin: -10px auto 0 auto;
z-index: 1;
}