The following problem that I encounter isn't a serendipity problem, but I still hoped that you could help me with it.
I am using the css overflow property to control the scrollbars. In Firefox I get the expected result.
Firefox (notice the scrollbars):

But in IExplore 7 it looks like the overflow property is being ignored.
IExplore 7 (notice the scrollbars):

The code that I use is
Code: Select all
<style type="text/css">
body{
overflow-x : hidden;
overflow-y : auto
}
</style>And
Code: Select all
<iframe id="gallery2" src="http://gallery.jeflog.nl/" scrolling="auto" marginwidth="0" marginheight="0" frameborder="0" vspace="0" hspace="0" style="overflow-x:auto; overflow-y:hidden; width:100%; display:none"></iframe>For the site visit:
http://gallery.jeflog.nl/photos.html
Greetz,
Jeffrey