PDA

View Full Version : Centering Script


dbobsession
08-01-2004, 08:05 AM
Hi.... I was hoping that someone would be able to give me a script that can center my whole layout in the middle of the page..... I need this because i wnat my site to be viewable by people in 800 x 600 resolution and 1024 x 768 resolution..... it also looks neater in the 1024 x 768 resolution if the page is centred....

I'd really appreciate it if someone could tell me how i could do this.... :)

Thanks :cool:

-- Dbobsession

The Finch
08-01-2004, 02:10 PM
If you're talking about css, you could always use

body {
text-align:center /*centering for IE*/
margin:0 auto;
}


Then your container/wrapper, etc. could look like this

#container {
text-align:left;
margin:0 auto; /*keeps it centered as long as you specify width*/
width:100px;
}