« All helpers
Displays a breadcrumb menu using a bulleted list that you can apply CSS to with the breadcrumb class.
breadcrumb
In PHP code, call it like this:
echo $this->run ('navigation/breadcrumb');
In a template, call it like this:
{! navigation/breadcrumb !}
Also available in the dynamic objects menu as "Navigation: Breadcrumb".
A CSS styling example:
.breadcrumb { list-style-type: none; margin: 0; padding: 0; } .breadcrumb li { list-style-type: none; margin: 0; padding: 0; display: inline; } .breadcrumb li:before { content: " / "; } .breadcrumb li:first-child:before { content: ""; }
Displays a breadcrumb menu using a bulleted list that you can apply CSS to with the
breadcrumb
class.In PHP code, call it like this:
In a template, call it like this:
Also available in the dynamic objects menu as "Navigation: Breadcrumb".
A CSS styling example: