Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations John Tel on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Set screen resolution

Status
Not open for further replies.

The

Programmer
Jul 30, 2001
92
CA
I want to make a link that changes the user's screen resolution to 1024 by 768. Is this possible? Thanks
 
no.
thus you would have to change the users actual setting on their computer. sounds like a bit of a security issue doesn't it.

one of the largest batles is developing for the various resolution settings. there are several steps to take to make certain things look as they should in most.

screen.width
screen.height
will output the users resolution for you to work with in changing your development to meet their settings Just a suggestion: faq183-874
admin@onpntwebdesigns.com
 
Easy way to center page regardless of resolution:


<body>
<table width=&quot;100%&quot; height=&quot;100%&quot;>
<tr><td align=&quot;center&quot; valign=&quot;middle&quot;>

your html code


</td></tr>
</table>
</body>

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top