Is it possible to start the breadcrumbs at level 2?
{breadcrumbs root='?'}
Breadcrumbs - start at level 2?
Re: Breadcrumbs - start at level 2?
...and also is it possible to add a
There is allready a but no classes for the rest of the items.
There is allready a but no classes for the rest of the items.
-
- Forum Members
- Posts: 28
- Joined: Thu Jan 08, 2009 1:28 pm
Re: Breadcrumbs - start at level 2?
Put the breadcrumb in an and apply a css rule to the first child to be not displayed.
You don´t need a ul you can replace the to , but an or an is the right semantik here.
Code: Select all
<ul id="breadcrumb>
<li>{breadcrumbs root='Home' delimiter='</li><li>}
</li>
</ul>
Code: Select all
#breadcrumb li:first-child { display:none }