Breadcrumb combined with final node level drop down menu
I have a nice breadcrumb that works great (thanks to the xslt templates that come with Umbraco).. I want to add a drop down menu at the end of the breadcrumb, that will show other nodes at the same level as the last item on the breadcrumb (by hovering over ">>") :
Category > Subcategory > SubSubCategory1 >>
By hovering over ">>", you would see and be able to click:
SubSubCategory2
SubSubCategory3
SubSubCategory4
I know how to get the css/html working on the hidden dropdown, but no luck yet with the xslt. Here's my breadcrumb:
The HTML output I am looking for is something like (see my content tree below):
**breadcrumb (for this example, we're on the "Gold" page)** <ul> <li><a href="/collections/womens.aspx" class="sub">Womens</a> / </li> <li><a href="/collections/womens/necklaces.aspx" class="sub">Necklaces</a> / </li> <li><a href="#>Gold ></a> **drop down menu that shows nodes at same level as "Gold" when hovered over "Gold"** <ul> <li><a href="/collections/zodiac.aspx">Zodiac</a></li> <li><a href="/collections/etcetera.aspx">Etcetera</a><li> </ul> </li> </ul>
Breadcrumb combined with final node level drop down menu
I have a nice breadcrumb that works great (thanks to the xslt templates that come with Umbraco).. I want to add a drop down menu at the end of the breadcrumb, that will show other nodes at the same level as the last item on the breadcrumb (by hovering over ">>") :
Category > Subcategory > SubSubCategory1 >>
By hovering over ">>", you would see and be able to click:
I know how to get the css/html working on the hidden dropdown, but no luck yet with the xslt. Here's my breadcrumb:
Hey Laura,
It will probably help if you post the HTML mark up you are trying to achieve, and also a picture of your content tree.
Rich
The HTML output I am looking for is something like (see my content tree below):
is working on a reply...