hi guys,
is there any freeware to enable a novice user of computer to regularly
change some windows settings
Screen Resolutin is a must.
anything arround?
Browser Resize
*** This question was submitted to our Mentor Community. The answer
was provided by Bob Conley
Q. How do I design my webpages so they fill the screen on all monitor sizes?
A. If you want to make sure that your site will look well in all resolutions
you should first decide what your lowest screen resolution should be.
According to statistics, most people are veiwing the web at 800 X 600 or above
and very few are actually viewing at 640 X 480. So you can safely design a
page for the lowest resolution being 800 X 600. When you design for 800 X 600
make sure that all of your images are optimized for that resolution. Use
percentages for your table instead of pixel widths. If you use a fixed pixel
width you are setting your table to an absolute measurement. If the table is
set to percentages it will expand as needed. I use a bit of JavaScript to
check to see what my sites look like in various resolutions. Copy and paste
this into your browser address:
javascript:resizeTo(640,480)
Hit enter and then save to your favorites. Do the same with the following:
javascript:resizeTo(800,600)
javascript:resizeTo(1024,768)
Your browser will resize itself to the resolutions and you can get an idea of
what the page is going to look like.