如何修复内容区域被 Wordpress 中的小部件阻止?

How to fix the content area got blocked by widget in Wordpress?

我的 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; */
}

那我该如何解决呢?先谢谢了!

您只需要从边栏中删除 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" 以供参考。