I need a little help from anyone who knows how to center a layout I have this site that on a large screen does not center its self... I tried a few different things with no luck lol anyone out there that can help let me know.. Thanks
using css you can do that. its better if you can post the url or code you are using to suggest you the change
thanks guys this is what I used from what I found searching around <body> <div id="container"> ...entire layout goes here... </div> </body> Using CSS, the following two rules force whatever is contained within #container to be centered: body { text-align: center; } #container { margin: 0 auto; width: xxxpx; } but its not working out... I guess I'm still doing something wrong lol this is the site fixandflip.net Thanks
It looks like you have a fixed width page as it's scrolling across the bottom. Try changing from the fixed width to 100%.
Use margin: 0 auto; The "align" attribute is out of date. For example: #pagecell { margin: 0 auto; width: 750px; } Code (markup): That will center the <div>.