Re: How does my site look from your computer?
Not centered on my screen, try making the site width fixed and aligning it into the center.
I would suggest something like this in the head (note: I don't use anything besides px, % and *, because cm and inches can be different on different computer settings):
<style type="text/css">
div#container
{
width: ***; [replace *** with the width in px (like 800px), % (like 50%)]
position: relative;
margin-top: ***; [top margin, px or %]
margin-left: ***; [left margin, px or %]
margin-right: ***; [right margin, px or %]
text-align: ***; [text alignment - usually left]
}
body
{
text-align: center;
margin: 0; [no margin, although you can set one if you wish]
}
</style>
Built for GFX & programming.