GaryB Posted February 15, 2010 Report Posted February 15, 2010 How can I get page layout to look like this forum's layout is designed? In my browser, IE 7, your forum page has the page centered with equal white space on the left and right. How is this done? Quote
Andrea Posted February 15, 2010 Report Posted February 15, 2010 Put your content inside a wrapper div, apply a width to it, and set the right and left margin for that wrapper div to auto. Quote
GaryB Posted February 15, 2010 Author Report Posted February 15, 2010 Put your content inside a wrapper div, apply a width to it, and set the right and left margin for that wrapper div to auto. Thanks for the reply. That got me part way to where I want to be. I notice however, that the right margin 'grows' beyond the intended border. It does not wrap as I imagined it would. Should I instead set my margins to fixed setting to create the layout I am looking for? Quote
Andrea Posted February 15, 2010 Report Posted February 15, 2010 Setting margin at fixed width won't work, as you don't know what resolution your page will be viewed with. Can we see your code - a link to the page would be best. What I said works, so you may have an error or some other issue going. Quote
falkencreative Posted February 15, 2010 Report Posted February 15, 2010 These are the exact CSS settings the forum uses. max-width:1100px; min-width:700px; overflow:auto; width:90%; That code centers the content area in the browser window, but allows the content width to change. The widest the content area can go is 1100px, and if you resize the browser smaller than that, it will change to a minimum width of 700px. This allows for different screen resolutions. Quote
shelfimage Posted February 15, 2010 Report Posted February 15, 2010 These are the exact CSS settings the forum uses. max-width:1100px; min-width:700px; overflow:auto; width:90%; That code centers the content area in the browser window, but allows the content width to change. The widest the content area can go is 1100px, and if you resize the browser smaller than that, it will change to a minimum width of 700px. This allows for different screen resolutions. This is what centers it: margin:0 auto; Quote
GaryB Posted February 15, 2010 Author Report Posted February 15, 2010 Thanks All, This is exactly what I needed. You guys are the best! Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.