|
DotNetNuke Community Edition |
|
05.04.04 (2) |
Im using the HTML method to create my skin. The skin parses well and the menu is created.
I have problems with the menu though. In the .ASCX file i have this:
<dnn:MENU runat="server" id="dnnMENU" />
so the html file parses correctly.
However i cant get any CSS classes to target the menu. Mu skin.xml looks like this:
<?xml version="1.0" encoding="UTF-8"?>
<Objects>
<Object>
<Token>[NAV]</Token>
<Settings>
<Setting>
<Name>ProviderName</Name>
<Value>DNNMenuNavigationProvider</Value>
</Setting>
<Setting>
<Name>CSSControl</Name>
<Value>anMenu_bar</Value>
</Setting>
<Setting>
<Name>CSSContainerRoot</Name>
<Value>anMenu_container</Value>
</Setting>
<Setting>
<Name>CSSNode</Name>
<Value>anMenu_item</Value>
</Setting>
<Setting>
<Name>CSSNodeRoot</Name>
<Value>anMenu_rootitem</Value>
</Setting>
<Setting>
<Name>CSSIcon</Name>
<Value>anMenu_icon</Value>
</Setting>
<Setting>
<Name>CSSContainerSub</Name>
<Value>anMenu_submenu</Value>
</Setting>
<Setting>
<Name>CSSBreak</Name>
<Value>anMenu_break</Value>
</Setting>
<Setting>
<Name>CSSNodeHover</Name>
<Value>anMenu_itemhover</Value>
</Setting>
</Settings>
</Object>
</Objects>
WHAT am i doing wrong?