我的wordpress自定义主题上的内容区域被小部件侧边栏阻止,因此我无法点击内容区域上的任何内容,例如任何智能手机产品。有关详细信息,请查看my website。
这里是style.css:
.widget {
margin: 0 -6px 0.5em;
}
#secondary { /* Sidebar 1 */width: 20%;/* margin-top: -185%; *//* margin-left: 32%; */margin: 30px -68.3rem;
float: left;
position: relative;}
#content {
float: left;
width: 82%;
margin-top: 107px;
}
#wrapper {
margin: 0 auto;
padding: 0;
vertical-align: top;
width: 1170px;
/* background-color: #FFFFFF; */
}
那么我该如何解决呢?先谢谢!
答案 0 :(得分:1)
您只需要从侧边栏中删除id="wrapper"
。
您的侧边栏应如下所示:
...
<div id="sidebar">
<div id="not_wrapper">
<div id="sidebanner"></div>
<aside id="dc_jqaccordion_widget-2" class="widget ">...</aside>
...
请注意,我将id="wrapper"
替换为id="not_wrapper"
以供参考。