Hi matchbx, That code for DesktopPortalBanner is left over from previous versions of DotNetNuke before they had that option of changing the root level on the breadcrumb. To get what you are wanting, you can just replace the code in DesktopPortalBanner.ascx that has the container for the BreadCrumbs with the new SkinObject from DNN2.0, then you will be able to set the RootLevel property of that object. In other words, where it says this: <div nowrap align="left" vAlign="center" runat="server" id="BreadCrumbContainer" class="BreadCrumbContainer"></div> you can replace it with : <dnn:BreadCrumb runat="server" id="dnnBreadCrumb" /> and register the skin object at the top of the page with: <%@ Register TagPrefix="dnn" RootLevel=“0” TagName="BreadCrumb" Src="~/admin/Skins/BreadCrumb.ascx"%> If you still want to position it absolutely (float it) with CSS then you can wrap it in a <div> that has the class="BreadCrumbContainer" in it, but don't give it an id="BreadCrumbContainer" or the CSS SKins Engine will try to fill it with it's own breadcrumb. |