PDA

View Full Version : How to change breadcrumb ">" to "/"?


WritersBeat
07-08-2007, 07:00 PM
I'd like to change my breadcrumbs to "/" characters instead of ">".

Heck, I just realized VB.org does it, so that proves it is possible.

Can anyone give me a tip on how to do it? Thanks.

EnIgMa1234
07-08-2007, 07:44 PM
Replace you navbar_link with this

<if condition="$show['breadcrumb']">
<span class="navbar">/ <a href="$nav_url">$nav_title</a></span>
<else />
$nav_title
</if>

WritersBeat
07-09-2007, 05:32 AM
Oh wow, duh, thanks. :)