Page 1 of 1

Breadcrumbs - start at level 2?

Posted: Thu Mar 12, 2009 10:06 am
by ravonet
Is it possible to start the breadcrumbs at level 2?

{breadcrumbs root='?'}

Re: Breadcrumbs - start at level 2?

Posted: Thu Mar 12, 2009 11:02 am
by ravonet
...and also is it possible to add a

There is allready a but no classes for the rest of the items.

Re: Breadcrumbs - start at level 2?

Posted: Sun Mar 15, 2009 11:43 pm
by benchfrooser
Put the breadcrumb in an and apply a css rule to the first child to be not displayed.

Code: Select all

<ul id="breadcrumb>
<li>{breadcrumbs root='Home' delimiter='</li><li>}
</li>
</ul>

Code: Select all

#breadcrumb li:first-child { display:none }
You don“t need a ul you can replace the to , but an or an is the right semantik here.