Thanks Raplh! I've bookmarked that for future reference.
I've followed the instructions there, but am still not having any luck. Out of curiosity, my opening register tags are as follows:
<%@ Control language="vb" CodeBehind="~/admin/Skins/skin.vb" AutoEventWireup="false" Explicit="True" Inherits="DotNetNuke.UI.Skins.Skin" %>
<%@ Register TagPrefix="dnn" TagName="NAV" Src="~/Admin/Skins/Nav.ascx" %>
<%@ Register TagPrefix="dnn" TagName="LINKS" Src="~/Admin/Skins/Links.ascx" %>
<%@ Register TagPrefix="dnn" TagName="LOGIN" Src="~/Admin/Skins/Login.ascx" %>
<%@ Register TagPrefix="dnn" TagName="BREADCRUMB" Src="~/Admin/Skins/BreadCrumb.ascx" %>
<%@ Register TagPrefix="dnn" TagName="CURRENTDATE" Src="~/Admin/Skins/currentdate.ascx" %>
<%@ Register TagPrefix="dnn" Namespace="DotNetNuke.UI.Skins" Assembly="DotNetNuke" %>
You'll notice I've added the UI.Skins register to the end, along with the Nav which was already there. Then, I changed my menu object to the following:
<
dnn:NAV
runat
=
"server"
ID
=
"dnnNAV"
ProviderName
=
"DNNMenuNavigationProvider"
IndicateChildren
=
"False"
ControlOrientation
=
"Vertical"
CSSControl
=
"MainNav"
/>
<
CustomAttributes
>
<
dnn:CustomAttribute
Name
=
"RenderMode"
Value
=
"UnorderedList"
/>
</
CustomAttributes
>
</
dnn:NAV
>
The Control Orientation is in there from the existing setup, and I've tried removing it but no luck.
Am I missing something obvious?