Auto resize of page in low resolutions?

liunx

Guest
Hi, I'm new here, and I am making a website for my uncle. I have most of the page completed, but something is bothering me.<br />
<br />
My screen is 1024x768x32. Now when people come to my site, they see what I have created, like normal. But people with 800x600 resolution or lower will experience problems. I'm talking about images being cut off and having to scroll to see the rest of the image.<br />
<br />
I was wondering, is there any tag that would automatically resize the page according to the users screen resolution? I know there has to be something because what do all the major companies with websites out there do?<br />
<br />
Thanks!<!--content-->This is probably the most popular difficulty in web development, right next to cross browser compatibility. The only HTML tag that exists that will resize is using % widths in <TABLE>. That way you can make a page stretch to the size they are using. Another way around it is just making your site in 800x600 resolution.<!--content-->Try this link. It has the code I believe your looking for.<br />
<br />
<!-- m --><a class="postlink" href="http://www.htmlgoodies.com/beyond/post_by_screen.html">http://www.htmlgoodies.com/beyond/post_by_screen.html</a><!-- m --><br />
<br />
<!-- m --><a class="postlink" href="http://www.htmlgoodies.com/beyond/msiepage.html">http://www.htmlgoodies.com/beyond/msiepage.html</a><!-- m --><br />
<br />
I tried to do the same thing you want to do and the code here works great!<!--content-->The links I copied for you have some great stuff in there about resizing. Mine is working great!<!--content-->
 
Back
Top