View Full Version : Miscellaneous Hacks - Alternative Breadcrumbs for your vB4
private_ale
03-21-2012, 11:00 PM
STOP: Before we go any further, I want to make it clear that you need to have a basic understanding of what you're doing. You need to have a basic understanding of CSS in order to make this perfect. I have tried my best to have this use vBulletin's existing stylevars, but you will most likely need to fine-tune it's cosmetic qualities on your own.
http://mauricedestefano.com/images/screenshot.387.png
Some people have been asking for better breadcrumbs. A few months ago, I published a barebone template on how to accomplish such a task. Despite my good efforts, some people needed additional help to get it working. To make matters easier, I took time out today to make the breadcrumbs work with a vBulletin 4 system. It includes basic Microdata.
As previously mentioned above, these will need some CSS work on a non-default style. When these were originally built, it was for my website, not for mass distribution. I have given my best efforts to port it to using vBulletin's stylevars, but it's very, very crude. I have taken some time to add comments to the CSS so you can easily change the values if they don't work right.
If you want to see a live demo, you may visit my site:
https://www.beercandle.com/forum.php
Please note my site is using the original revision. This here is the adapted.
Prerequisite to setting this up: This has only been tested on vBulletin 4.1.11; Create a copy of the Style you want to apply this to. Test it first. Make sure it looks good. :)
> Open Template Group `CSS Templates`
>> Open Template `additional.css`
### ADD ###
.bread_box {
margin: 0;
overflow: hidden;
clear: both;
}
.breadcrumb {
position: relative;
font: 11px Arial,Calibri,Verdana,Geneva,sans-serif;
background: {vb:stylevar sidebar_background};
border: {vb:stylevar sidebar_border}; /* this is the border color that's around the whole thing */
-moz-border-radius:{vb:stylevar border_radius};
-webkit-border-radius: {vb:stylevar border_radius};
border-radius: {vb:stylevar border_radius};
overflow: hidden;
}
.breadcrumb .crust {
display: block;
float: left;
position: relative;
}
.breadcrumb .crust:first-child a.crumb {
padding-left: 13px;
-moz-border-radius-topleft:{vb:stylevar border_radius};
-moz-border-radius-bottomleft:{vb:stylevar border_radius};
-webkit-border-top-left-radius: {vb:stylevar border_radius};
-webkit-border-bottom-left-radius: {vb:stylevar border_radius};
border-top-left-radius: {vb:stylevar border_radius};
border-bottom-left-radius: {vb:stylevar border_radius};
}
.breadcrumb .crust a.crumb, .breadcrumb .crust b.lastcrumb {
text-decoration: none;
background-color: {vb:stylevar sidebar_background.backgroundColor}; /* this is the background color of the CRUMBS, ie: the links */
padding: 0 10px 0 23px;
border-bottom: {vb:stylevar sidebar_border}; /* this is the same as the border value higher up, this only shows if the last crumb causes it to overflow */
margin-bottom: -1px;
outline: 0 none;
-moz-outline-style: 0 none;
display: block;
line-height: 22px;
_border-bottom: none;
color:{vb:stylevar link_color}; /* this is the color of the links in the crumbs */
text-decoration:{vb:stylevar link_textDecoration};
}
.breadcrumb .crust b.lastcrumb {
background: transparent none;
color: {vb:stylevar footer_time_color}; /* this is the color of the last crumb, ie: the final destination */
font-weight: bold;
}
.breadcrumb .crust a.crumb, .breadcrumb .crust b.lastcrumb {
line-height: 22px;
}
.breadcrumb .crust .arrow {
border: 12px solid transparent;
border-right: 1px none black;
border-left: {vb:stylevar sidebar_border}; /* this is the _background_ color of the "arrow" */
border-left-width: 12px !important;
border-left-style: solid !important;
display: block;
position: absolute;
right: -12px;
top: -1px;
z-index: 50;
width: 0px;
height: 0px;
}
.breadcrumb .crust .arrow span {
border: 12px solid transparent;
border-right: 1px none black;
border-left-color: {vb:stylevar sidebar_background.backgroundColor}; /* this is the border color of the "arrow" */
display: block;
position: absolute;
left: -13px;
top: -12px;
z-index: 51;
white-space: nowrap;
overflow: hidden;
text-indent: 9999px;
width: 0px;
height: 0px;
}
.breadcrumb .refresh:hover { background-position: 0px -16px; }
.breadcrumb .crust:last-child a.crumb { font-weight: bold; }
.breadcrumb .crust:hover a.crumb {
background-color:{vb:stylevar blocksubhead_background.backgroundColor}; /* this is the background color of the crumb when it's hovered */
color:{vb:stylevar linkhover_color}; /* likewise, this is the color of the crumb's link when hovered */
text-decoration:{vb:stylevar linkhover_textDecoration};
}
.breadcrumb .crust:hover .arrow span {
border-left-color:{vb:stylevar blocksubhead_background.backgroundColor}; /* this is the color of the "arrow" when hovered. It should be identical to the `.breadcrumb .crust:hover a.crumb` background value */
}
> Open Template Group `Navigation / Breadcrumb Templates`
>> Open Template `navbar`
### FIND ###
<div id="breadcrumb" class="breadcrumb">
<ul class="floatcontainer">
<li class="navbithome"><a href="index.php{vb:raw session.sessionurl_q}" accesskey="1"><img src="{vb:stylevar imgdir_misc}/navbit-home.png" alt="{vb:rawphrase home}" /></a></li>
{vb:raw navbits.breadcrumb}
{vb:raw navbits.lastelement}
</ul>
<hr />
</div>
### REPLACE WITH ###
<div class="bread_box">
<nav>
<fieldset class="breadcrumb">
<span class="crumbs">
<vb:if condition="$vboptions['hometitle']">
<span class="crust" itemscope="itemscope" itemtype="http://data-vocabulary.org/Breadcrumb">
<a href="{vb:raw vboptions.homeurl}" class="crumb" rel="up" itemprop="url" alt="{vb:rawphrase home}">
<span itemprop="title">{vb:raw vboptions.hometitle}</span>
</a>
<span class="arrow">
<span>></span>
</span>
</span>
</vb:if>
{vb:raw navbits.breadcrumb}
{vb:raw navbits.lastelement}
</span>
</fieldset>
</nav>
</div>
>> Open template `navbar_link`
### REPLACE _EVERYTHING_ WITH ###
<vb:if condition="$show['breadcrumb']">
<span class="crust" itemscope="itemscope" itemtype="http://data-vocabulary.org/Breadcrumb">
<a href="{vb:raw nav_url}" class="crumb" rel="up" itemprop="url">
<span itemprop="title">{vb:raw nav_title}</span>
</a>
<span class="arrow">
<span>></span>
</span>
</span>
<vb:else />
<span class="crust" itemscope="itemscope" itemtype="http://data-vocabulary.org/Breadcrumb">
<b class="lastcrumb">
<span itemprop="title">{vb:raw nav_title}</span>
</b>
</span>
</vb:if>
BirdOPrey5
03-22-2012, 07:18 PM
Working well for me on 4.1.11 :up:
Thanks.
CouponWCents
03-22-2012, 08:41 PM
WOOHOO! Looks great!
CouponWCents
03-22-2012, 08:45 PM
Is there anyway to get it not to show up on the CMS or forum pageS?
AURFSCAN
03-23-2012, 12:53 AM
Is there anyway to get it not to show up on the CMS or forum pageS?
post 6 here :) - https://vborg.vbsupport.ru/showthread.php?t=243517
tagged this to sus it out.. thanks
Dr.osamA
03-23-2012, 09:43 PM
Excellent
installed
plz can you do that from right to left as RTL
thank you
Ohlala.Vn
03-24-2012, 09:21 AM
Thank you !!! Very nice
garybrun
03-24-2012, 07:24 PM
INstalled thanks.
www.minelabowners.com
abdobasha2004
03-24-2012, 07:47 PM
very nive looking
plz provide code for vb 3.8
thanks in advance
Ricsca
03-24-2012, 09:23 PM
Thanks
Anopheles
03-25-2012, 07:27 AM
Works with 4.1.11!
Great Job!!
AURFSCAN
03-26-2012, 04:54 PM
thanks, Installed with some tweaking eg. no arrows, hover color etc. simplified for my style...cheers
Gemma
03-28-2012, 05:20 AM
Thanks for sharing, I was about to release my own version of this. Saves me doing so :)
doctorsexy
03-28-2012, 09:45 AM
Smashin...thank you
In Omnibus
03-29-2012, 12:39 PM
Works great, even with custom themes.
Thank you for sharing.
TrIp0d
03-29-2012, 03:48 PM
Perfect Big Thanks =)
Hareth
03-31-2012, 12:21 PM
GREAT WORK,
Thank you so much private_ale
Hareth
03-31-2012, 03:38 PM
Hi,
Could you please tell me how to change arrow direction from ltr to rtl?
Thank you,
majickal
03-31-2012, 03:59 PM
This has been the very first and only externally coded mod I have currently used, really impressed!
This has made a big difference to the aesthetics of my site. :up:
Cheers :)
Hareth
03-31-2012, 09:13 PM
I've done some changes on it to work with rtl
Note: I've changed also some colors to work with my forum.
.bread_box {
margin: 0;
overflow: hidden;
clear: both;
}
.breadcrumb {
position: relative;
font: 11px Tahoma;
background: {vb:stylevar sidebar_background};
border: {vb:stylevar sidebar_border}; /* this is the border color that's around the whole thing */
-moz-border-radius:{vb:stylevar border_radius};
-webkit-border-radius: {vb:stylevar border_radius};
border-radius: {vb:stylevar border_radius};
overflow: hidden;
}
.breadcrumb .crust {
display: block;
float: right;
position: relative;
}
.breadcrumb .crust:first-child a.crumb {
padding-right: 13px;
-moz-border-radius-topleft:{vb:stylevar border_radius};
-moz-border-radius-bottomleft:{vb:stylevar border_radius};
-webkit-border-top-left-radius: {vb:stylevar border_radius};
-webkit-border-bottom-left-radius: {vb:stylevar border_radius};
border-top-left-radius: {vb:stylevar border_radius};
border-bottom-left-radius: {vb:stylevar border_radius};
}
.breadcrumb .crust a.crumb, .breadcrumb .crust b.lastcrumb {
text-decoration: none;
background-color: {vb:stylevar sidebar_background.backgroundColor}; /* this is the background color of the CRUMBS, ie: the links */
padding: 0 23px 0 10px;
border-bottom: {vb:stylevar sidebar_border}; /* this is the same as the border value higher up, this only shows if the last crumb causes it to overflow */
margin-bottom: -1px;
outline: 0 none;
-moz-outline-style: 0 none;
display: block;
line-height: 22px;
_border-bottom: none;
color:{vb:stylevar link_color}; /* this is the color of the links in the crumbs */
text-decoration:{vb:stylevar link_textDecoration};
}
.breadcrumb .crust b.lastcrumb {
background: transparent none;
color: #02485c; /* this is the color of the last crumb, ie: the final destination */
font-weight: bold;
}
.breadcrumb .crust a.crumb, .breadcrumb .crust b.lastcrumb {
line-height: 22px;
}
.breadcrumb .crust .arrow {
border: 12px solid transparent;
border-left: 1px none black;
border-right: {vb:stylevar sidebar_border}; /* this is the _background_ color of the "arrow" */
border-right-width: 12px !important;
border-right-style: solid !important;
display: block;
position: absolute;
left: -12px;
top: -1px;
z-index: 50;
width: 0px;
height: 0px;
}
.breadcrumb .crust .arrow span {
border: 12px solid transparent;
border-left: 1px none black;
border-right-color: {vb:stylevar sidebar_background.backgroundColor}; /* this is the border color of the "arrow" */
display: block;
position: absolute;
right: -13px;
top: -12px;
z-index: 51;
white-space: nowrap;
overflow: hidden;
text-indent: 9999px;
width: 0px;
height: 0px;
}
.breadcrumb .refresh:hover { background-position: 0px -16px; }
.breadcrumb .crust:last-child a.crumb { font-weight: bold; }
.breadcrumb .crust:hover a.crumb {
background-color:#d6e4f7; /* this is the background color of the crumb when it's hovered */
color:{vb:stylevar linkhover_color}; /* likewise, this is the color of the crumb's link when hovered */
text-decoration:{vb:stylevar linkhover_textDecoration};
}
.breadcrumb .crust:hover .arrow span {
border-right-color:#d6e4f7; /* this is the color of the "arrow" when hovered. It should be identical to the `.breadcrumb .crust:hover a.crumb` background value */
}
huevncom
04-05-2012, 02:11 AM
thanks, great
kralex
04-06-2012, 04:55 PM
Thanks
How to hide "Forums" links?
https://vborg.vbsupport.ru/
Dante848
04-06-2012, 11:33 PM
Love this, very nice modification. :)
Moncha
04-10-2012, 10:41 PM
I have two links to HOME when selected on the CMS home page, any ideas?
Moncha
04-20-2012, 05:31 PM
Ok, figured this one out... If you have the same trouble in the CMS as I did (Shown in the post above), I fixed it by adding a conditional into the template as shown here;
<vb:if condition="$show['breadcrumb']">
<vb:if condition="THIS_SCRIPT != 'home'">
<span class="crust" itemscope="itemscope" itemtype="http://data-vocabulary.org/Breadcrumb">
<a href="{vb:raw nav_url}" class="crumb" rel="up" itemprop="url">
<span itemprop="title">{vb:raw nav_title}</span>
</a>
<span class="arrow">
<span>></span>
</span>
</span>
</vb:if>
<vb:else />
<span class="crust" itemscope="itemscope" itemtype="http://data-vocabulary.org/Breadcrumb">
<b class="lastcrumb">
<span itemprop="title">{vb:raw nav_title}</span>
</b>
</span>
</vb:if>
Then add this;
define('THIS_SCRIPT', 'home');
to the top of "content.php" below the <?php.
BirdOPrey5
04-20-2012, 05:42 PM
That would be a BAD idea... content.php already has THIS_SCRIPT defined as:
define('THIS_SCRIPT', 'vbcms');
Changing it would likely break other mods of even some vbulletin features itself.
Define your own constant, something other than THIS_SCRIPT...
Maybe
define('IS_HOME', 'yes');
And then in the conditional:
<vb:if condition="IS_HOME != 'yes'">
Moncha
04-20-2012, 07:13 PM
Very cool. A rookie is glad to learn from a skilled person such as you.
BirdOPrey5
04-20-2012, 07:40 PM
Very cool. A rookie is glad to learn from a skilled person such as you.
Making a new constant was still a good idea. :up:
Just put a note somewhere so you remember to redo it when you upgrade the forum.
doraj
04-28-2012, 08:39 AM
Hello,
how became the new breadcrumbs when there is a very long post-title?
I have a fixed style and I would like know is someone that use a fixed style, has already test this situation.
Thank you,
Regards
LeventX
05-02-2012, 08:06 PM
Thanks installed..
Onkeltyson
05-09-2012, 01:37 PM
Looks nice ;-) Thanks for that
tidus78
05-11-2012, 06:30 AM
Two problems :
1) Layout
2) Home disappears
:confused:
http://img543.imageshack.us/img543/8485/capture20120511092756.png
MajinOLesedi
05-11-2012, 03:53 PM
Thank you, good job
Winter Sonata
05-11-2012, 05:31 PM
very good job!
tidus78
05-12-2012, 04:56 PM
Solved :)
Something similar for navbar?
iBaker
05-25-2012, 12:29 AM
This works ok for 4.2
GaRanT
05-31-2012, 11:00 PM
I have default vb4.2.0 template but with customized sidebar.
Could someone help me please with breadcrumb css to make it as default colors of sidebar.
http://www.freeimagehosting.net/t/ylmsn.jpg (http://www.freeimagehosting.net/ylmsn)
Nice template hack, I really like the look of the Breadcrumbs now!
I was dealing with a lot of confusion about how to change the language on my site, so I made a small modification to add and additional language picking box to the right side of the breadcrumb box. This way it's near the top of the page instead of scrolled off the bottom.
To accommodate the slightly larger drop down box for the language selector, I had to make the bar a few px taller. Below are the code modifications from private_ale's original hack.
Here's the new code for additional.css:
.bread_box {
margin: 0;
overflow: hidden;
clear: both;
}
.breadcrumb {
position: relative;
font: 11px Arial,Calibri,Verdana,Geneva,sans-serif;
background: {vb:stylevar sidebar_background};
border: {vb:stylevar sidebar_border}; /* this is the border color that's around the whole thing */
-moz-border-radius:{vb:stylevar border_radius};
-webkit-border-radius: {vb:stylevar border_radius};
border-radius: {vb:stylevar border_radius};
overflow: hidden;
}
.breadcrumb .crust {
display: block;
float: left;
position: relative;
}
.breadcrumb .crust:first-child a.crumb {
padding-left: 13px;
-moz-border-radius-topleft:{vb:stylevar border_radius};
-moz-border-radius-bottomleft:{vb:stylevar border_radius};
-webkit-border-top-left-radius: {vb:stylevar border_radius};
-webkit-border-bottom-left-radius: {vb:stylevar border_radius};
border-top-left-radius: {vb:stylevar border_radius};
border-bottom-left-radius: {vb:stylevar border_radius};
}
.breadcrumb .crust a.crumb, .breadcrumb .crust b.lastcrumb {
text-decoration: none;
background-color: {vb:stylevar sidebar_background.backgroundColor}; /* this is the background color of the CRUMBS, ie: the links */
padding: 0 10px 0 23px;
border-bottom: {vb:stylevar sidebar_border}; /* this is the same as the border value higher up, this only shows if the last crumb causes it to overflow */
margin-bottom: -1px;
outline: 0 none;
-moz-outline-style: 0 none;
display: block;
line-height: 29px;
_border-bottom: none;
color:{vb:stylevar link_color}; /* this is the color of the links in the crumbs */
text-decoration:{vb:stylevar link_textDecoration};
}
.breadcrumb .crust b.lastcrumb {
background: transparent none;
color: {vb:stylevar footer_time_color}; /* this is the color of the last crumb, ie: the final destination */
font-weight: bold;
}
.breadcrumb .crust a.crumb, .breadcrumb .crust b.lastcrumb {
line-height: 29px;
}
.breadcrumb .crust .arrow {
border: 15px solid transparent;
border-right: 1px none black;
border-left: {vb:stylevar sidebar_border}; /* this is the _background_ color of the "arrow" */
border-left-width: 15px !important;
border-left-style: solid !important;
display: block;
position: absolute;
right: -15px;
top: -1px;
z-index: 50;
width: 0px;
height: 0px;
}
.breadcrumb .crust .arrow span {
border: 15px solid transparent;
border-right: 1px none black;
border-left-color: {vb:stylevar sidebar_background.backgroundColor}; /* this is the border color of the "arrow" */
display: block;
position: absolute;
left: -16px;
top: -15px;
z-index: 51;
white-space: nowrap;
overflow: hidden;
text-indent: 9999px;
width: 0px;
height: 0px;
}
.breadcrumb .refresh:hover { background-position: 0px -16px; }
.breadcrumb .crust:last-child a.crumb { font-weight: bold; }
.breadcrumb .crust:hover a.crumb {
background-color:{vb:stylevar blocksubhead_background.backgroundColor}; /* this is the background color of the crumb when it's hovered */
color:{vb:stylevar linkhover_color}; /* likewise, this is the color of the crumb's link when hovered */
text-decoration:{vb:stylevar linkhover_textDecoration};
}
.breadcrumb .crust:hover .arrow span {
border-left-color:{vb:stylevar blocksubhead_background.backgroundColor}; /* this is the color of the "arrow" when hovered. It should be identical to the `.breadcrumb .crust:hover a.crumb` background value */
}
Here's the new code to add for navbar:
<div class="bread_box">
<nav>
<fieldset class="breadcrumb">
<span class="crumbs">
<vb:if condition="$vboptions['hometitle']">
<span class="crust" itemscope="itemscope" itemtype="http://data-vocabulary.org/Breadcrumb">
<a href="{vb:raw vboptions.homeurl}" class="crumb" rel="up" itemprop="url" alt="{vb:rawphrase home}">
<span itemprop="title">{vb:raw vboptions.hometitle}</span>
</a>
<span class="arrow">
<span>></span>
</span>
</span>
</vb:if>
{vb:raw navbits.breadcrumb}
{vb:raw navbits.lastelement}
<!-- Language Selector -->
<li style="float: right;">
<form action="{vb:raw vboptions.forumhome}.php" method="get" id="footer_select">
<vb:if condition="$show['languagechooser']">
<select name="langid" onchange="switch_id(this, 'lang')">
<optgroup label="{vb:rawphrase quick_language_chooser}">
{vb:raw languagechooserbits}
</optgroup>
</select>
</vb:if>
</form> </li>
<!-- Language Selector Ends -->
</span>
</fieldset>
</nav>
</div>
navbar_link remains the same.
I hope you find this hack-on-hack useful!
-dwx
GameOverViper
06-17-2012, 02:11 AM
I'm having an issue with it after installing. It shows two lines on the bottom, which doesn't look like the examples I've seen here. I'm using the latest version of vbulletin, 4.2.0.
I'm having an issue with it after installing. It shows two lines on the bottom, which doesn't look like the examples I've seen here. I'm using the latest version of vbulletin, 4.2.0.
I had the same issue, it was because there's an underline that's NOT overwritten by the bounding box. It's theme specific, and has nothing to do with 4.2. You tweak the CSS and make the regions larger so it fills up your space.
Take a look at the modification's I posted above, I increased the height of the bar by 6 or 7px to accommodate the language picker, and had to adjust the arrows to fit as well.
dwx
final kaoss
06-30-2012, 05:37 PM
Thanks, installed.
Neo_Angelo
07-06-2012, 07:15 PM
I love this modification, looks much nicer than the dDefault, thanks for the share. :)
initiald
07-09-2012, 07:46 AM
This would be nice if you can add navbit-home icon next to "Your Site Name" or remove "Your Site Name" and replace it with the "home icon".
This would be nice if you can add navbit-home icon next to "Your Site Name" or remove "Your Site Name" and replace it with the "home icon".
This would in fact be awesome.
Chadi
07-26-2012, 08:29 PM
Conflicting issue it seems, first there is already a .breadcrumb class in vbulletin.css
Problem is that the body background is missing its white property. I tried to even change the custom additional.css (yours) breadcrumb background property to match the vbulletin.css one, cleared cache but for whatever reason didn't take effect.
oldz442
07-27-2012, 04:42 AM
Thanks. Any ideas how to put the little Home icon back? I tried but get the below result.
EDIT: Is text-indent: 9999px; really needed, and if so, is there an alt? thx
EDIT: I got the home icon pretty much where I want it for now. Had to add padding:4px 0 6px 0 Curious... what do most folks set that far left link to... 'homepage' home or 'forum' home? I have it at homepage right now, but thinking forum home might be more logical as I already have a Home button in the main top nav where What's New is.
grey_goose
07-29-2012, 03:42 AM
Very happy with this, thanks for sharing!
synseal
08-08-2012, 12:09 PM
Excellent!!! Thank you.
artcrimes
08-09-2012, 06:00 AM
Hi,
Great thread! Will you share footer area code of your website? (https://www.beercandle.com/forum.php)
Also a very nice theme, what is the theme name?
nando99
09-20-2012, 01:19 AM
this is awesome!
anyway to get rid of the forum link tho?
Thanks
How to hide "Forums" links?
http://img607.imageshack.us/img607/3293/screenshot379.jpg
gariksher
10-23-2012, 03:54 AM
Thank you!
Mark as Installed.
cuphongle
10-28-2012, 07:42 PM
its wonderful! thank you
anyone got a nicer/cleaner looking "post new thread" image?
thanks
joerns
01-04-2013, 09:36 PM
Great mod, thank you! I have a small formatting issue (see attached image) and would appreciate any ideas on how to solve it. It only happens on the last item of a navigation path - upper levels are fine as in here: http://www.mopanetree.com/opentalk/125081-namibia-space-2.html
JamalFree
01-04-2013, 10:38 PM
Thank you !!! Very nice
Lpspider
01-15-2013, 10:55 PM
All my arrows are pointing the wrong way using this css.
They are < instead of >. Tips?
badbob1337
01-29-2013, 12:43 PM
tested on 4.2.0. buggy.
AnthemToGod
03-11-2013, 02:19 AM
Tested 4.2.0, not working... But..
I changed some stylevar field i this code, working now..
Replace with this code on additional.css
.bread_box {
margin-top: 2px;
overflow: hidden;
clear: both;
}
.breadcrumb {
position: relative;
font: 11px Arial,Calibri,Verdana,Geneva,sans-serif;
background: #f1f1f1 url(images/gradients/top-highlight.png) repeat-x
scroll left top;
border: #000000; /* this is the border color that's around the whole thing */
-moz-border-radius:{vb:stylevar border_radius};
-webkit-border-radius: {vb:stylevar border_radius};
border-radius: {vb:stylevar border_radius};
overflow: hidden;
}
.breadcrumb .crust {
display: block;
float: left;
position: relative;
}
.breadcrumb .crust:first-child a.crumb {
padding-left: 13px;
-moz-border-radius-topleft:{vb:stylevar border_radius};
-moz-border-radius-bottomleft:{vb:stylevar border_radius};
-webkit-border-top-left-radius: {vb:stylevar border_radius};
-webkit-border-bottom-left-radius: {vb:stylevar border_radius};
border-top-left-radius: {vb:stylevar border_radius};
border-bottom-left-radius: {vb:stylevar border_radius};
}
.breadcrumb .crust a.crumb, .breadcrumb .crust b.lastcrumb {
text-decoration: none;
background-color: #f1f1f1; /* this is the background color of the CRUMBS, ie: the links */
padding: 0 10px 0 23px;
border-bottom: 1px; /* this is the same as the border value higher up, this only shows if the last crumb causes it to overflow */
border-bottom-style:solid;
border-bottom-color:#c1c1c1;
margin-bottom: -1px;
outline: 0 none;
-moz-outline-style: 0 none;
display: block;
line-height: 22px;
_border-bottom: none;
color:#417394; /* this is the color of the links in the crumbs */
text-decoration:none;
}
.breadcrumb .crust b.lastcrumb {
background: transparent none;
color: #3e3e3e; /* this is the color of the last crumb, ie: the final destination */
font-weight: bold;
}
.breadcrumb .crust a.crumb, .breadcrumb .crust b.lastcrumb {
line-height: 22px;
}
.breadcrumb .crust .arrow {
border: 12px solid transparent;
border-right: 1px none black;
border-left: #c1c1c1; /* this is the _background_ color of the "arrow" */
border-left-width: 12px !important;
border-left-style: solid !important;
display: block;
position: absolute;
right: -12px;
top: -1px;
z-index: 50;
width: 0px;
height: 0px;
}
.breadcrumb .crust .arrow span {
border: 12px solid transparent;
border-right: 1px none black;
border-left-color: #f1f1f1; /* this is the border color of the "arrow" */
display: block;
position: absolute;
left: -13px;
top: -12px;
z-index: 51;
white-space: nowrap;
overflow: hidden;
text-indent: 9999px;
width: 0px;
height: 0px;
}
.breadcrumb .refresh:hover { background-position: 0px -16px; }
.breadcrumb .crust:last-child a.crumb { font-weight: bold; }
.breadcrumb .crust:hover a.crumb {
background-color:#e9e9e9; /* this is the background color of the crumb when it's hovered */
color: #417394; /* likewise, this is the color of the crumb's link when hovered */
text-decoration:none;
}
.breadcrumb .crust:hover .arrow span {
border-left-color:#e9e9e9; /* this is the color of the "arrow" when hovered. It should be identical to the `.breadcrumb .crust:hover a.crumb` background value */
}
DemOnstar
07-09-2013, 11:17 AM
Wanted to see an example, followed the link to the site and found out it was private...
Screen shots would be nice.
Thanks.....
final kaoss
07-09-2013, 10:25 PM
There are screenshots, just look at the attachments.
ahobilam
07-12-2013, 07:30 AM
Hi
It is great for my forum 4.2.1
thank you
given 5*
See the breadcrumb below:
https://dl.dropboxusercontent.com/u/24348664/images/forum/beautiful-breadcrumb.png
Disco_Dave
08-13-2013, 02:36 PM
Anyone know how to make this line a background: url
.breadcrumb .crust:hover .arrow span {
border-left-color:#e9e9e9; /* this is the color of the "arrow" when hovered. It should be identical to the `.breadcrumb .crust:hover a.crumb` background value */
}
Thanks
Dave
Great hack! :)
TeamSempoi
11-21-2013, 12:27 AM
working good on (vBulletin 4.2.2)
john7911
11-21-2013, 05:17 AM
Thank you, I'll try it l8tr ;)
K4GAP
11-21-2013, 07:30 PM
On one of your screen shots (see below) your addition and the regular breadcrumb are all within very close proximity to each other.
I would think it would be better to replace the default with yours? Otherwise it's repetitive.
https://vborg.vbsupport.ru/attachment.php?attachmentid=137214&d=1332429220
BirdOPrey5
11-21-2013, 07:46 PM
I don't see the regular breadcrumb in that picture?
This is the default breadcrumb-
https://vborg.vbsupport.ru/attachment.php?attachmentid=147283&stc=1&d=1385066769
K4GAP
11-21-2013, 11:58 PM
The text below the bread crumb. My bad.
This text:
Beercandle Forums
Welcome to the Beercandle Forums.
There's no need for it.
Manuel94
06-18-2016, 06:34 AM
Hi, do you know how can I do to enlarge this breadcrumb? I tried to maximize it with line-height but arrows remain small. Thank you.
charlesr
01-25-2020, 08:03 PM
For anyone that is still using this, these are the new replacements that fix the (vbulletin) data-vocabulary.schema deprecation from google's search console.
(just added "vbulletin" above in case anyone is searching google!)
navbar:
<div class="bread_box">
<nav>
<fieldset class="breadcrumb">
<span class="crumbs">
<vb:if condition="$vboptions['hometitle']">
<ol class="crust" itemscope="itemscope" itemtype="http://schema.org/BreadcrumbList">
<li itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem">
<a itemprop="item" href="{vb:raw vboptions.homeurl}" class="crumb" rel="up" itemprop="url" alt="{vb:rawphrase home}">
<span itemprop="title">{vb:raw vboptions.hometitle}</span>
</a>
</li>
<span class="arrow">
<span>></span>
</span>
</ol>
</vb:if>
{vb:raw navbits.breadcrumb}
{vb:raw navbits.lastelement}
</span>
</fieldset>
</nav>
</div>
navbar_link:
<vb:if condition="$show['breadcrumb']">
<ol class="crust" itemscope="itemscope" itemtype="http://schema.org/BreadcrumbList">
<li itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem">
<a itemprop="item" href="{vb:raw nav_url}" class="crumb" rel="up" itemprop="url">
<span itemprop="title">{vb:raw nav_title}</span>
</a>
</li>
<span class="arrow">
<span>></span>
</span>
</ol>
<vb:else />
<ol class="crust" itemscope="itemscope" itemtype="http://schema.org/BreadcrumbList">
<li itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem">
<b class="lastcrumb">
<span itemprop="title">{vb:raw nav_title}</span>
</b>
</li>
</ol>
</vb:if>
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.