I’ve been working with jQuery slideshow “Gallaria”. There is a rendering issue when using Internet Explorer 8/9 that looks like: click here. I am not sure why its rendering it out so its not “fullscreen.” I’ve tested the same page on Firefox4, Chrome and Safari and they all seem to render it as intended.
I’ve tried to use Firebug to find out if there are any issues on load and I have not found anything. I’ve reimplemented Gallaria from scratch and dug through the documentation. I can’t seem to pinpoint why in Internet Explorer it behaves like this and not in the other browsers.
I have a uploaded this page to this directory: click here
The problem is that your page is in Quirks Mode.
It looks like you’ve accidentally deleted this doctype line from the top of your HTML:
Add that back in (as the very first line), and it will work properly in IE.
You should also fix this line:
into this:
And this line:
into:
You’re also missing a closing tag for
html; add</html>at the end.