Until I can get a real solution to embedding Gallery3 into my site, I'm using, or I should say, trying to use an iframe. The below works to expand the height 100%, but the browser scroll window does not understand that there is content below it's height. So lets say you have more content in the iframe that the browser is tall, the browser scroll bar will not allow you to scroll down through it--it thinks there is nothing on the page.
This is how I'm doing the heigth trick:
It works in FF 3.6x and IE 8
html, body, div, iframe { margin:0; padding:0; height:100%; }
iframe { display:block; width:100%; border:none; }
No js required!
The trick is to add css to the "html" element also.
Anyway to work around this?
[edited by: alt131 at 12:15 am (utc) on May 17, 2011]
[edit reason] Thread Tidy [/edit]