I previewed my page in my browser, and found that the whole thing is on the left side of the page. How do I center it like the killersites page, and most other pages? Attached is a screenshot to give you an idea of what I'm talking about. Please note the large white area composing the right side of the screen.
Page 1 of 1
How do I center my page?
#2
Posted 06 March 2011 - 08:00 PM
Wrap a div around the whole thing. The way you do that is apply the open div just after the open body tag and the a closed div just before the closing body tag.
<body>
<div style="margin: 0 auto; width: 900px;"> Note: set your width to whatever size your framework is.
</div>
</body>
<body>
<div style="margin: 0 auto; width: 900px;"> Note: set your width to whatever size your framework is.
</div>
</body>
#4
Posted 07 March 2011 - 05:08 AM
This is how I center my page:
#wrapper {
width: 960px;
margin-top: 20px;
margin-right: auto;
margin-left: auto;
}
I put all of my content links,main content ect. inside of the wripper div and use this css to center it in the browser window. The centering part is the margin-right: auto; margin-left: auto; I hope this helps.
#wrapper {
width: 960px;
margin-top: 20px;
margin-right: auto;
margin-left: auto;
}
I put all of my content links,main content ect. inside of the wripper div and use this css to center it in the browser window. The centering part is the margin-right: auto; margin-left: auto; I hope this helps.
Standards will change. But your website needs to remain in serving its audience.
My Portfolio site
My Portfolio site
#5
Posted 08 March 2011 - 01:49 AM
If you have any divs or other elements with position: absolute you will almost certainly need to add position: relative to the wrap div as position: absolute elements will be unaffected unless you do add it:-
<body> <div style="position: relative; margin: 0 auto; width: 900px;"> Note: set your width to whatever size your framework is. </div> </body>
Share this topic:
Page 1 of 1

Help
















