I would like to set width in my site - 800px but I can't.
I try change css.
help me please where and how ?
width problem
Re: width problem
Normally you can change it in layout stylesheet
An easy way could be too to change from
for Firefox and herediv#pagewrapper {
border: 1px solid black;
margin: 0 auto; /* this centers wrapper */
max-width: 80em; /* IE wont understand these, so we will use javascript magick */
min-width: 60em;
background-color: #fff;;
color: black;
}
in template for IE.#pagewrapper {width:expression(P7_MinMaxW(720,950));}
#container {height: 1%;}
An easy way could be too to change from
tomax-width: 80em; /* IE wont understand these, so we will use javascript magick */
min-width: 60em;
width: 800px