View Full Version : How do I make my breadcrumbs look like this?
xdoomx
08-11-2005, 11:37 PM
The default vB breadcrumbs display like this, on 2 lines with the 2 icons beside them.
http://img361.imageshack.us/img361/8224/breadcrumbs29rg.gif
I want mine to look like this, all on the same line without any icons.
http://img361.imageshack.us/img361/3143/breadcrumbs12mk.gif
Thanks!
Princeton
08-12-2005, 12:00 AM
modify the navbar and navbar_link template
xdoomx
08-12-2005, 03:53 AM
modify the navbar and navbar_link template
Yeah I know that, but how exactly do I need to modify it? I got it to work... kinda, it's not perfect.
When I view a category I get: SleekSkins ? ? Main Category. The "?" should appear only once, not twice.
When I view a thread I get: SleekSkins ? Main Category Main Forum ? Thread Title. Now there is a "?" missing between Main Category and Main Forum.
KW802
08-12-2005, 04:49 AM
As used here..... http://www.cinvin.com/forums/?styleid=16 ;)
navbar
<td class="nav_bc" width="100%">
<if condition="is_array($navbits)">
<table cellpadding="0" cellspacing="0" border="0">
<tr valign="middle">
<td><a href="#" onclick="history.back(1)"><img src="$stylevar[imgdir_misc]/vb_icon.gif" alt="$vbphrase[go_back]" border="0" /></a></td>
<td> </td>
<td width="100%"><span class="nav_bc"><a href="$vboptions[forumhome].php?$session[sessionurl]" accesskey="1">$vboptions[bbtitle]</a></span> $navbits[breadcrumb] > <strong>$navbits[lastelement]</strong></td>
</tr>
</table>
<else />
<div class="nav_bc" style="font-size:10pt"><a href="$vboptions[forumhome].php?$session[sessionurl]" accesskey="1"><img class="inlineimg" src="$stylevar[imgdir_misc]/vb_icon.gif" alt="" border="0" /></a> <strong>$vboptions[bbtitle]</strong></div>
</if>
</td>
navbar_link
<if condition="$show['breadcrumb']">
> <a href="$nav_url">$nav_title</a>
<else />
$nav_title
</if>
xdoomx
08-12-2005, 05:00 AM
Thanks champ. :)
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.