Where are breadcrumbs in v4?


Author Message
RadioActiveLamb

Posted: 8/20/2012
Quote message 

Thanks Curt. Did you get instructions for adding breadcrumbs into the page.ascx file?
 
Dwilson

Posted: 8/22/2012
Quote message 

Just open your page.ascx

and place the code under the nav or inside the sheet.

</header> 	<nav class="nav clearfix"> 		<dnn:menu menustyle="Menu" runat="server"> 		<templatearguments> 			<dnn:templateargument name="class" value="hmenu"></dnn:templateargument> 		</templatearguments> 	</dnn:menu> </nav> <div class="sheet clearfix"> 

<!-- Breadcrumb Code -->
<dnn:TEXT runat="server" id="dnnTEXT" Text="You are here >" ResourceKey="Breadcrumb" /> <dnn:BREADCRUMB ID="dnnBREADCRUMB" RootLevel="0" Separator="&nbsp;>&nbsp;" runat="server" />
<!-- Breadcrumb Code -->

You can also wrap this code in CSS and place it anywhere on the page or style it.