CSS
-Tricks
treehouse :
what would you like to learn today?
Web Design
Web Development
iOS Development
Show search box
Search
Search in:
All
Articles
Forums
Snippets
Videos
✕
Home
Forums
Snippets
Gallery
Videos
Almanac
Demos
Lodge
Navigation 'n' Search
Forums
Illustration by Nick Sirotich
Forums
»
CSS Combat
Center whole blog
leehughes
Permalink to comment
#
April 2010
Hi,
I'm looking to center my whole blog..like..
http://i45.photobucket.com/albums/f56/p ... 110044.png
Not sure how to figure this out.. I can center it but then the text in the blog gets centered when I need everything centered except the text which should remain in align left..
Anyone know how to do this?
Thanks
falkencreative
Permalink to comment
#
April 2010
The exact code depends on how your site is coded, but it's usually done like this:
#wrapper { margin:0 auto; width: 960xp; }
This assumes that you have a div with an id of "wrapper" that wraps around your entire site. It has a fixed width and the "margin:0 auto" centers it.
leehughes
Permalink to comment
#
April 2010
I'm using a fullwidth framework..
I'm after the content being centred..
I think I worked it out to be
#content {
margin:auto;
width:600px;
http://www.leehughes.co.uk/newsite/blog-2/
It looks centered but i'm not sure how it will stand in different browsers
Hedison
Permalink to comment
#
May 2010
It's the outer wrapper that you need to center to center the whole blog
Add a Comment
I'm looking to center my whole blog..like.. http://i45.photobucket.com/albums/f56/p ... 110044.png
Not sure how to figure this out.. I can center it but then the text in the blog gets centered when I need everything centered except the text which should remain in align left..
Anyone know how to do this?
Thanks
#wrapper { margin:0 auto; width: 960xp; }This assumes that you have a div with an id of "wrapper" that wraps around your entire site. It has a fixed width and the "margin:0 auto" centers it.
I'm after the content being centred..
I think I worked it out to be
#content {
margin:auto;
width:600px;
http://www.leehughes.co.uk/newsite/blog-2/
It looks centered but i'm not sure how it will stand in different browsers