| abecedarian wrote
Add a [NAV] token.
|
thank you abecedarian, that fixed that...I triedto declare the [CONTENTPANE:1] in a xml file, but I'm getting an error...
Could Not Load Skin: /Portals/_default//skins/grandview/skin.ascx Error: The tag contains duplicate 'id' attributes
my html file looks like this...
<html>
<head>
<link id="skin" rel="stylesheet" type="text/css" href="skin.css" />
</head>
<body>
<div id="wholecontainer">
<div id="header">[LOGIN]</div>
<div id="leftcontent">[CONTENTPANE]</div>
<div id="maincontent">[CONTENTPANE:1]</div>
</div>
</body>
my xml looks like this...also not sure if putting LOGIN and CONTENTPANE in there is necessary...
<Objects>
<Object>
<Token>[LOGIN]</Token>
<Settings>
<Setting>
<Name>id</Name>
<Value>header</Value>
</Setting>
</Settings>
</Object>
<Object>
<Token>[CONTENTPANE:1]</Token>
<Settings>
<Setting>
<Name>id</Name>
<Value>maincontent</Value>
</Setting>
</Settings>
</Object>
<Object>
<Token>[CONTENTPANE]</Token>
<Settings>
<Setting>
<Name>id</Name>
<Value>leftcontent</Value>
</Setting>
</Settings>
</Object>
</Objects>