Center site in all browsers

DaZ


Joined
Jul 6, 2008
Messages
43
Reaction score
0
Points
6
Location
California
Your Mac's Specs
24" iMac 2.8GHz, Intel Core 2 Duo, 2GB RAM, iphone 3G, & Classic ipod
Hello All,

I am creating a website (CSS) with dreamweaver and I am having problems with centering my site in all browsers. I've heard that this could be done with code. Can someone please explain what I would type and where I should type it in at.

Thanks,
-Daz
 
Joined
May 31, 2009
Messages
203
Reaction score
3
Points
18
Location
Vancouver, Canada
Your Mac's Specs
15" Unibody (Jan 09)
Wrap the entire site in a div, and ID it "wrapper". Then put this in the CSS:

#wrapper {
width: 800px;
margin-left: auto;
margin-right: auto;
}

That should do it, replace 800px with your desired width.
 
OP
DaZ

DaZ


Joined
Jul 6, 2008
Messages
43
Reaction score
0
Points
6
Location
California
Your Mac's Specs
24" iMac 2.8GHz, Intel Core 2 Duo, 2GB RAM, iphone 3G, & Classic ipod
Thanks for the fast reply. I changed the div id="wrapper" but I am not sure where to enter:
#wrapper {
width: 800px;
margin-left: auto;
margin-right: auto;
}
Thanks again
 
Joined
Oct 22, 2007
Messages
8,967
Reaction score
287
Points
83
Location
London
Your Mac's Specs
Mac Mini Core i7 2012 | White 2009 MacBook 2 Ghz | 733 Mhz G4 Quicksilver
the code
#wrapper {
width: 800px;
margin-left: auto;
margin-right: auto;
}

Should go in the CSS file that all your pages should be linking to

Its just a text file so you can copy the above code in to a plain text file (textEdit) and save it as filename.css (or whatever filename you like, but make sure it is a plain text file and has the .css extension).

Place it in a folder called CSS in your site and then link your page(s) to that file from Dreamweavers CSS palette
 

Shop Amazon


Shop for your Apple, Mac, iPhone and other computer products on Amazon.
We are a participant in the Amazon Services LLC Associates Program, an affiliate program designed to provide a means for us to earn fees by linking to Amazon and affiliated sites.
Top