如何从Facebook页面删除垂直滚动条

时间:2013-10-31 13:37:42

标签: javascript html facebook scrollbar

我想从我的脸书页面删除垂直滚动条,虽然我尝试了很多代码,如下所示,没有任何效果。

我将Canvas Height设置为Fixed;我正在使用wordpress,如果这很重要的话。

有什么建议吗?

 <div id="fb-root"></div>
 <script type="text/javascript">  
   window.fbAsyncInit = function() {
    FB.init({
     appId: '0000000000000000', 
     status: true, 
     cookie: true, 
     xfbml: true
    });

    //this resizes the the i-frame 
    //on an interval of 100ms 
    FB.Canvas.setAutoResize(100);

   };
   (function() {
    var e = document.createElement('script');
    e.async = true;
    e.src = document.location.protocol + 
     '//connect.facebook.net/en_US/all.js';
    document.getElementById('fb-root').appendChild(e);   
   }());

  </script>

1 个答案:

答案 0 :(得分:0)

以下解决方案应该有效:

<style type='text/css'>
 #fb-root 
 {
    overflow-y:hidden;
    overflow-x:hidden;
 }
</style>