The code includes options for setting the default display and the minimum and maximum widths that the pane can be resized to. To change the default settings simply update the pixel measurement in the value attribute.
To change the contents pane width:
- Open the index.htm in Notepad and locate the configuration section.
- Locate the code for the West panel width, there are three options that can be changed. Locate the code you want to update, then change the pixel measurement for the value attribute.
- Change the default width used by the panel in the following code:
<!-- West panel width -->
<input id="WestPanelWidth" type="hidden" value="250" />
- Change the maximum width the panel can be resized to using the following code:
<!-- West panel maximum width limit -->
<input id="WestPanelMaxWidth" type="hidden" value="400" />
- Change the minimum width the panel can be resized to using the following code:
<!-- West panel minimum width limit -->
<input id="WestPanelMinWidth" type="hidden" value="190" />
- Change the default width used by the panel in the following code:
- Save the changes to the index.htm file.