in the include file gradient1-pa-vars.sst it has this code which sets the page width
- Code: Select all
#<!-- Page Width # -->
[-- IF PAGE.PageWidth "90%" --]
[-- VAR.pa_width "90%" --]
[-- ELSE_IF PAGE.PageWidth "85%" --]
[-- VAR.pa_width "85%" --]
[-- ELSE_IF PAGE.PageWidth "75%" --]
[-- VAR.pa_width "75%" --]
[-- ELSE_IF PAGE.PageWidth "65%" --]
[-- VAR.pa_width "65%" --]
[-- ELSE_IF PAGE.PageWidth "50%" --]
[-- VAR.pa_width "50%" --]
[-- ELSE --]
[-- VAR.pa_width "90%" --]
[-- END_IF --]
and in the gradient1.css file it has this code
- Code: Select all
body{
font-family: [-- IF STORE.Font --][-- STORE.Font --][-- ELSE --]Arial, Helvetica, sans-serif[-- END_IF --];
font-size: [-- IF STORE.FontSize --][-- STORE.FontSize --][-- ELSE --]76%[-- END_IF --];
color: [-- VAR.text_color --];
background-color: [-- VAR.background_color --];
line-height: 1.166;
margin: 0px;
padding: 0px;
min-width: 777px;
width: [-- VAR.pa_width --];
margin-left: auto;
margin-right: auto;
margin-top: 10px;
margin-bottom: 10px;
display: table;
}
So from the second section of code the minimum width of the page is set to 777px. The actual maximum width is set by the width: [-- VAR.pa_width --] and that var is set in the first section of code to 90, 85, 75, 65, 50 based on the setting in the Pages > Edit Page Layout > Width field. If the value is something other than one of those set % the width will be set at 90% of the browser window width.
So the width will be a minimum of 777 pixels and if the window is wider than that it will expand to take up the % of the window that is indicated.