Scrollbar problem
Posted: Mon Dec 18, 2006 1:08 am
Hey guys,
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
In the HEAD section.
And
Why does the code works in Firefox, but not in IExplore 7? Is there a way to also make it work in IExplore 7?
For the site visit:
http://gallery.jeflog.nl/photos.html
Greetz,
Jeffrey
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