Wordpress remove class =“ the_content_wraper”

问题描述 投票:0回答:1

我希望我的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
1个回答
0
投票

最后成功了:

.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;
}
© www.soinside.com 2019 - 2024. All rights reserved.