Widths - Eonic/ProteanCMS GitHub Wiki
This section defines several variables related to the layout and styling of elements in terms of width and padding. These variables can be used to ensure consistent layout dimensions across the website.
Description: This variable sets the full width of the layout, commonly used to define the overall container size in pixels.
<xsl:variable name="fullwidth" select="'960'"/>
Description: This variable sets the width of the navigation area, often used for sidebars or menus.
<xsl:variable name="navwidth" select="'200'"/>
Description: This variable defines the padding inside boxes or containers, helping to control spacing within elements.
<xsl:variable name="boxpad" select="'15'"/>
Description: This variable defines the padding between columns, controlling the horizontal space between elements in a grid or layout.
<xsl:variable name="colpad" select="'20'"/>
Description: This variable specifies the jQuery version being used, which can be important for compatibility and ensuring the right version of the library is loaded.
<xsl:variable name="jqueryVer" select="'1.11'"/>