Hi everybody, Let´s see if somebody can give a hand with this... I built a site few months ago. I designed the site to be seen on a 17 inches screen (1024x768) and looks all right with that resolution but I have now realised that my site doesn´t appear centered with a 600x800 resolution or with the resolution for a 19 inches screen. This is a big problem for me. Is there any way I can make my site centered for all the different screens and resolutions? Please I would really welcome a hand... Thanks to everybody in advance.
If you are using a stylesheet, you can center it this way: body { margin: 0 auto; } HTML: If you aren't using one, instead of using <center> tags, use this: <div align="center"> (content) </div> HTML:
or if you're using tables, you can use this code: <table [B]align="center"[/B] width="width in pixels or %" border="0" cellspacing="0" cellpadding="0"> <tr> <td>content here</td> </tr> </table> Code (markup): by default, the table is aligned to left. so align="center" should do the trick