Click to See Complete Forum and Search --> : homepage fullscreen NO toolbars NO scroll


slam
10-03-2003, 04:23 PM
sorry to ask but I'm new at this !
what coding do I need to make my homepage open in full screen and toolbars & scroll bars inactive ?

HTML ??? JavaScript ???

thanks

PeOfEo
10-03-2003, 05:16 PM
To get rid of the toolbars and to make the page full screen you will want some java script but to get rid of the scroll bars you will need to make your page fluid. Thats just your layout make it so It can resize when viewed at different resolutions. http://www.bluerobot.com has some very simple fluid layouts so you can see the basic principals of a fluid css layout

Eburris
10-06-2003, 03:41 PM
here is an auto maximize script but please try to understand it instead of just cut and paste.


<Script Language="JavaScript1.2">
<!--
top.window.moveTo(0,0);
if (document.all) {top.window.resizeTo(screen.availWidth,screen.availHeight);}
else if (document.layers||document.getElementById) {
if (top.window.outerHeight<screen.availHeight||top.window.outerWidth<screen.availWidth){
top.window.outerHeight = screen.availHeight;
top.window.outerWidth = screen.availWidth;
}
}
-->
</Script>

spufi
10-06-2003, 04:22 PM
Originally posted by slam
sorry to ask but I'm new at this !
what coding do I need to make my homepage open in full screen and toolbars & scroll bars inactive ?

HTML ??? JavaScript ???

thanks

I've said it before and I'll say it again. If I went to site that does this, I don't go back. Yeah, I think that covers it. ;)