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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Centering Page in Different resolutions? 800x600, 1024x768, 1280x1024

Status
Not open for further replies.

Hisakata

Technical User
Sep 24, 2002
36
US
Hello, all. I could never get this done correctly. Say I have an image and I want it centered no matter what resolution it is viewed at. How do I do this? Javascript? Something else? Thank you so much.
 
<DIV align=&quot;center&quot;><img...></DIV>

or if you want your whole site centered

<DIV align=&quot;center&quot;>Site content here</DIV>

<signature>
sometime you just gotta say &quot;WHAT THE @#*% !!&quot;
</signature>
 
like so:
Code:
<body>
<div align=&quot;center&quot;>
  <p><img src=&quot;/images/image.jpg&quot;></p>
  <p>or</p>
  <table width=&quot;100&quot; border=&quot;0&quot; align=&quot;center&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;>
    <tr>
      <td align=&quot;center&quot;><img src=&quot;/images/image.jpg&quot;></td>
    </tr>
  </table>
  <p>&nbsp;</p><p>&nbsp; </p>
</div>
</body>

All the best!

> need more info?
:: don't click HERE ::
 
THanks for the tips but I think I didn't post my question properly. I need it to always be centered vertically and horizontally.

For example like this site:
 


Code:
<html>
<head>
<title>My centered document</title>
<meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=iso-8859-1&quot;>
</head>

<body leftmargin=&quot;0&quot; topmargin=&quot;0&quot; marginwidth=&quot;0&quot; marginheight=&quot;0&quot;>
<table width=&quot;100%&quot; height=&quot;100%&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;>
  <tr>
    <td align=&quot;center&quot; valign=&quot;middle&quot;>&nbsp;</td>
  </tr>
</table>
</body>
</html>

<signature>
sometime you just gotta say &quot;WHAT THE @#*% !!&quot;
</signature>
 
wow thanks so much!!!! didn't realize it was so easy.
 
just don't tell W3C about height=&quot;100%&quot; ;-)

> need more info?
:: don't click HERE ::
 
lol -- what they know cant hert them

<signature>
sometime you just gotta say &quot;WHAT THE @#*% !!&quot;
</signature>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top