2017-10-08 92 views
0

我的网页右侧存在不需要的可用空间问题。这里是我的网页: right side页面右侧的空白处

我添加这些代码

html,body 
{ 
    width: 100%; 
    height: 100%; 
    margin: 0px; 
    padding: 0px; 
    overflow-x: hidden; 
} 

,它的解决我的问题,但是,它禁用网页页脚图标我怎么能做到这一点?

这是网页:

webpage url

+1

你''footer''''DIV级 “=行”''标签不在''container''标签内 –

+1

关闭''''标签关闭 –

回答

1

不要加入这样的代码,而是需要纠正在页脚部分的HTML代码。其实它看起来像这样

<footer id="site-footer" class="footer "> 
 
    <div class="container"> 
 
    </div> <!-- issue here !!--> 
 
    <div class="row" itemscope="" itemtype="http://schema.org/Organization"> 
 
    <div class="contacts"> 
 
     <div class="col-lg-4 col-md-6 col-sm-12 col-xs-12"> 
 
     <div class="contacts-item"> 
 

 
     </div> 
 
     </div> 
 
    </div> 
 
    </div> 
 
</footer>

您已经关闭了容器的DIV严重,则应在格后关闭。这就是为什么你有空白空间,因为行类添加了由容器纠正的负边距。

+0

好吧,我改变这个,但它已经在那里的''容器'div。这些代码不会改变 –

+0

我仍然看到问题 –

0

你的元素之一,它造成了这个余地。为了找出你可以设置所有元素的轮廓边框为1px红色,然后修复它。

*{ 
outline: 1px solid red; 
} 
0

错误在你的HTML footer > container关闭标签

编辑另一个错误

//1: header mistake - Position 
//the problem is position: relative in header media query on the theme-styles.css 

    .header @media (max-width: 768px){ 
    /* position: relative; */ /*remove this*/ 
     animation: none !important; 
     padding: 0px 0; 
    } 

//2: footer mistake - container closing tag 
    <footer id="site-footer" class="footer "> 
     <div class="container"> 
      //container closed here 
     </div>//remove this close tag 
      <div class="row>"---</div> 
      <div class="sub-footer large">---</div> 

     </div>//container close here 
    </footer> 
+0

好吧,我改变了这一点,但它已经在那里。这些代码不会改变 –

+0

我检查了错误使用您的链接[网页](http://fikirfabrika.org/)。通过检查它的工作 –

+0

我知道它看起来像工作,但在手机,空白已经在那里。 –