Dave Pierce wrote: > Hello Gurus of Great Graphics, > > Can someone take a look at this page (I finally got to do one from > scratch instead of updating old stuff! ;-) > http:www.pierceartanddesign.com/testfiles/ and perhaps point me in > the right direction to get the page centered into the browser window? > I tried the method described here http://www.bluerobot.com/web/css/ > center1.html but it didn't seem to work. > >
It appears that you have the wrapper margin written incorrectly. The order kind of spells TRouBLe - that's TOP, RIGHT, BOTTOM, LEFT, or counter-clockwise from the top. So your wrapper margin should be: margin: 0 auto 0 auto; This can be shortened to: margin: 0 auto; Lori ______________________________________________________________________ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7 information -- http://css-discuss.incutio.com/?page=IE7 List wiki/FAQ -- http://css-discuss.incutio.com/ Supported by evolt.org -- http://www.evolt.org/help_support_evolt/
