首页 > 解决方案 > Wordpress 删除类="the_content_wraper"

问题描述

我希望我的 wordpress 网站是全屏的,但我的左侧和右侧都有一个白色边框。

它是由以下原因引起的:class="the_content_wraper" 是否有可能用 css 代码将其删除?

<div class="section_wrapper">
  <div class="the_content_wrapper">
    <iframe src="https://www.xxxxx.xx" width="100%" height="100%" frameborder="0">
    </iframe>

  </div>
</div>

标签: wordpress

解决方案


最后它起作用了:

.section_wrapper, .container {
    margin: 0 auto;
    max-width: 100%;
    position: relative;
    content-wraper: 0px;
}

.section_wrapper{
padding-left: 0px !important;
padding-right: 0px !important;
margin:0px;
}

.the_content_wrapper{
margin:0px;
}

推荐阅读