Removing scroll bar on videos on Facebook

1

I have a problem on my laptop when I try to view videos on Facebook. Whenever I click on a video to start it, iframe expands but not enough to cater the video and scroll bars appear.

There is a way to fix it by changing HTML i.e. by adding scrolling="no" to the iframe element. I tried it with FireBug and it works great, the problem is, of course, the fact that it isn't permanent. That's why I tried a Stylish addon for Firefox but I believe it can only change CSS of a page.

Is there any other addon that can automatically add a scrolling parameter to every iframe on facebook page?

rlesko

Posted 2012-02-07T19:02:38.560

Reputation: 327

Answers

1

This is indeed possible with CSS using Stylish or userChrome.css. Apply the following to the element that has scroll bars:

overflow: hidden !important;

iglvzx

Posted 2012-02-07T19:02:38.560

Reputation: 21 611

I could swear I tried adding that with Stylish and it didn't work then. Indeed it works now! Just added iframe{overflow: hidden !important;} for Facebook page. – rlesko – 2012-02-07T20:05:13.357