How do I create a fixed with display on a Point2 site?

If you would like to make you make your website a fixed width site, go to your template and open a New Content area.   Select the option "Advanced Content."    When prompted, say you do not want a horizontal line generated and do not give the header any name.    When the editing box opens, insert the content that is listed between the two lines below.
________________
.DesktopDefaultPage {
margin-left: auto; margin-right: auto; max-width: 1018px;
padding-left: expression(document.body.clientWidth > 1018 ? (document.body.clientWidth-1018)/2 + "px":0);
padding-right: expression(document.body.clientWidth > 1018 ? (document.body.clientWidth-1018)/2 + "px":0);
background-color : white ;
}

________________
Once you have added this code to your site, replace the number "1018 ( in the 5 places it is found in the above code) with the width you would like for the fixed width area.  Example: you could replace the 1018 with 960.
If you would like this area to have a color, replace the word "white" with the color you would like for the background of the your fixed area.