04-25-2008, 02:41 AM
|
#4 (permalink)
|
|
v7n Mentor
Join Date: 04-13-07
Location: Romania
Posts: 2,939
|
First thing first: Don't use position absolute.
After that:
1. Add this div after your body tag (that is, wrap the content in this div): <div id="PageWrapper">
2. Add these style rules:
Code:
body {
margin: 0 auto 0 auto;
padding: 0;
text-align: center;
}
DIV#PageWrapper {
width: auto; height: auto;
margin: 0 auto 0 auto;
padding: 0;
text-align: left;
}
that should do it.
|
|
|