Velocity Reviews

Velocity Reviews (http://www.velocityreviews.com/forums/index.php)
-   Javascript (http://www.velocityreviews.com/forums/f68-javascript.html)
-   -   Resolution in IE web page (http://www.velocityreviews.com/forums/t934453-resolution-in-ie-web-page.html)

francan00@yahoo.com 01-29-2008 01:58 AM

Resolution in IE web page
 
I am trying to create a page where it will look the same if the screen
is resolution 1024 x 768 or if the screen is resolution 800 x 600.

The below finds the resolution but the page looks different depending
on the resolution. Please advise how I can make a web page look the
same no matter what the resolution?


Code:
<script>
if ((screen.width>=1024) && (screen.height>=768))
{
divWidth = 1024;
divHeight = 768 ;
document.write("high res 1024");
}
else
{
divWidth = 1024;
divHeight = 768 ;
document.write("low res 800");
}
</script>
</head>

<body>
<table width=100%>
<tr>
<td><font size=+4>
long scroll test where the page will scroll different width depending
on resolution.....
</font>
</td>
</tr>
</table>
</body>
</html>In my above example the page width scrolling changes depending
on resolution. I want it to be the same if either resolution is used.


All times are GMT. The time now is 08:16 AM.

Powered by vBulletin®. Copyright ©2000 - 2013, vBulletin Solutions, Inc.
SEO by vBSEO ©2010, Crawlability, Inc.