Topic: how to change website width

how do i change website width to 800, thanks ;D
como cambio lo ancho de la pagina? gracias

Last edited by ruben (2009-07-11 23:52:44)

Thumbs up

Re: how to change website width

Css?

rodolfoberrios.com | PLEASE use Tech Support forums to ask for support!

Re: how to change website width

but which part i cant find it

Thumbs up

Re: how to change website width

Ypu muust change divs like #contenido:

div#contenido {
    width: 57em;
    margin: 0 auto 0 auto;
    padding: 0 2em 0 2em;
    }

to:

div#contenido {
    width: 800px;
    margin: 0 auto 0 auto;
    padding: 0 2em 0 2em;
    }

do this with #contenido, #foot, #top.. etc.

rodolfoberrios.com | PLEASE use Tech Support forums to ask for support!