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?

link|improve this question
feedback

1 Answer

up vote 1 down vote accepted

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

overflow: hidden !important;
link|improve this answer
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 Feb 7 at 20:05
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.