PDA

View Full Version : Widening index page


knighton620
03-Mar-2004, 11:16 AM
Guys,

I am trying to widen my page www.knighton-tools.co.uk so i can accomodate some more images etc, how do i do this ?

Many Thanks

Johnny

nick UK
03-Mar-2004, 12:45 PM
HI if you are trying to set the size of the browser when loading your site you can do the following in the HEAD tag


<script language="javascript">

function BrowserInfo()
{
this.screenWidth = screen.width;
this.screenHeight = screen.height;
}

function ResizePage()
{
var b = new BrowserInfo();
if (b.screenWidth > 800 && b.screenHeight > 600)
{
window.resizeTo(1024,768);
}
else
{
window.resizeTo(800,600);
}
}

</script>



Now add to the BODY tagonLoad="ResizePage();"

Hope this helps

Nick