0

您好,我的主题左侧固定块区域有问题。此代码中的#content 滑到侧边栏第一个附加块的左侧。

    <body class="html not-front logged-in two-sidebars page-node page-node- page-node-616 node-type-group og-context og-context-node og-context-node-616">
<div id="navbar" class="navbar navbar-medium navbar-inverse navbar-fixed-top">
<div id="main">
<div class="container">
<div class="row-toggle row-fluid">
<aside id="sidebar-first" class="sidebar span2 hidden-phone">
<div class="region region-sidebar-first">
<div class="region region-sidebar-first-affix affix" style="width: 145px;">
</aside>
<div id="containerr">
<section id="content" class="span6">
<div class="region region-content">
</section>
<aside id="sidebar-second" class="sidebar span4 hidden-phone">
</div>
</div>
</div>
<footer id="footer" class="container-wrapper">
<div id="sb-container">
</body>

我认为影响这一切的 CSS 是 -

#sidebar-first > .region {
    background: none repeat scroll 0 0 #0A0A0A;
    margin-right: 10px;
    padding: 10px 15px;
}

.region-sidebar-first-affix.affix {
    top: 20px;
}
.region-sidebar-first-affix.affix {
    top: 55px !important;
}

.affix {
    position: fixed;
}

如果需要不是垃圾邮件链接,您可以查看此页面上的代码,因为我很快会删除此域

所有的指针都非常感谢,因为它似乎只是有点超出我的 CSS 和 Html 知识。

谢谢

4

1 回答 1

0

您的代码片段缺少几个结束标记,并不能真正说明您的页面存在的问题。

我能够通过更改 section#content 的 css 来更正您页面上的显示。

你可以这样写你的CSS:

section#content { margin-left:19.5%; 宽度:54% }

于 2013-10-24T01:06:45.007 回答