Hi,

I like this module very much.
Is it possible to hide the vertical scrollbar in FF in iframe?
(a piece of JavaScript code or CSS?)
About 45% people in Poland use FF and such not needed
scrollbar looks very bad.

best,
Gregor

Comments

vb’s picture

Module has phpbbframe.js which dynamically resizes the iframe to match its content height.
But the phpbb style prosilver still shows vert scrolbars in FF, subsilver2 do not.
It seems it depends on style and browser.
I do not know yet why.

sionek’s picture

Thanks. I do not use subsilver2 but knowing that it is possible
to have iframe in FF without this scrollbar, I have found how to do it.
I have removed the vertical scrollbar (prosilver, FF) at my test
website by moving the end of the comment sign (*/)
from:

html { font-size: 100%;
   /* Always show a scrollbar for short pages - stops the jump when the scrollbar appears. non-IE browsers */	
  height: 100%; 
  margin-bottom: 1px; 
}

to:

html { font-size: 100%;
   /* Always show a scrollbar for short pages - stops the jump when the scrollbar appears. non-IE browsers 	
  height: 100%; 
  margin-bottom: 1px; */
}

in the prosilver common.css.

best wishes,
Gregor

vb’s picture

Thanks, it really works, I will include this patched common.css in the next release.

fizk’s picture

Status: Active » Closed (fixed)