Click to See Complete Forum and Search --> : Geocities full screen??


UnRealKreationz
12-25-2002, 10:51 PM
Is there a way to make Geocities be the full screen?? Geocities is limited to a short amout of working space. On some computers it looks decent, and when you check on an another computer with a higher resolution that site looks almost empty. So is there some code that will obtain the full screen??

You can see what I am talking about if you click here (http://www.Unrealkreationz.com)

swon
12-26-2002, 06:06 AM
One way is, you can put a script <head></head> which resizes your window to 800 x 600 or you can put your site into a window.open .

script could be:

<script>
function resizes(x,y){
window.resizeTo(x,y);
}
</script>


<body onResize=resizes('800','600') onLoad=resizes('800','600')>