I designed a message board and skin using the free hosting at http://www.invisionfree.com They use a custom Invisionboard setup with restricted options for members (skinning become quite a challenge when you can only modify CSS and not HTML.)
My message board: NewCityVegas.com
The above link is actually a masked redirection to my message board, a feature of the Godaddy.com registrar. To do it, they employ an invisible frame.
Here's the real URL (no invisible frame).
I wanted to reposition the web site screen and make it a maximized window. In the Invisionfree Javascript wrapper code, I added:That didn't work. Loading occured but I only got a blank screen.<script language=JavaScript>
resizeTo(screen.availWidth,screen.availH eight)
</script>
So, I made it:This ALMOST works but I got a skinny left scrollbar instead of a normal one.<script language=JavaScript>
moveTo(0,0);
resizeTo(screen.availWidth,screen.availH eight)
</script>
So I changed it to this:This generates an error (no permission to manipulate the TOP frame) but otherwise works fine.<script language=JavaScript>
if(top != self) top.moveTo(0,0);
resizeTo(screen.availWidth,screen.availH eight)
</script>
Anyone using Javascript who has an idea what's going on with the skinny scrollbar or how to just load the page WITHOUT an error?


LinkBack URL
About LinkBacks



Reply With Quote
Bookmarks