Thread: Site?
View Single Post
Old 2006-08-31, 02:38 PM   #7
Useless
Certified Nice Person
 
Useless's Avatar
 
Join Date: Oct 2003
Location: Dirty Undies, NY
Posts: 11,268
Send a message via ICQ to Useless
In your style section, add:

body {
margin-right: auto;
margin-left: auto;
}

Change:

#Layer1 {
position:absolute;
width:105%;
height:115px;
z-index:4;
left: 0%;
top: 0%;
background-color: #CD8C95;
background-image: url(images/pastels.png);
}

to:

#Layer1 {
position: absolute;
top: 0;
margin-left: auto;
margin-right: auto;
left: 0;
right: 0;
width: 100%;
text-align: center;
height:115px;
background-color: #CD8C95;
background-image: url(images/pastels.png);
}

and change:

<table id="table_05" width="51%" cellspacing="0" border="0" cellpadding="0">

to:

<table id="table_05" width="100%" cellspacing="0" border="0" cellpadding="0">

Change any other occurence of 105% to 100%

Don't tell anyone that I helped.
__________________
Click here to purchase a bridge I'm selling.

Last edited by Useless; 2006-08-31 at 02:53 PM..
Useless is offline   Reply With Quote