I regret to inform you that it is now 7 lines of code. I write such bloat.
HTML Code:
<if condition="is_array($navbits)">
<div id="framework-breadcrumbs">
<strong>You are here:</strong> <a href="index.php?$session[sessionurl]">$vboptions[bbtitle]</a> <span class="breadcrumb-separator">»</span>
<a href="$vboptions[forumhome].php?$session[sessionurl]">Forum Listings</a>
$navbits[breadcrumb]
</div>
</if>
Needed that <div> in there for some styling.
Hint:
here's part of the CSS:
Code:
div#framework-breadcrumbs
{
padding: 0.5em 0px 0.5em 0px;
border-top: 1px solid #CCCCCC;
border-bottom: 1px solid #CCCCCC;
margin-bottom: 1em;
}
span.breadcrumb-separator
{
font-weight: bold;
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 12px;
}
And here's the top of my master framework style sheet:
Code:
@import url('framework-links.css');
@import url('framework-search.css');
@import url('framework-navbar.css');
@import url('framework-infobar.css');
@import url('framework-footer.css');
@import url('framework-adsense.css');
@import url('framework-messages.css');
@import url('framework-awards.css');
Modularity == good. Most of those CSS files are only 20 lines or so. The one controlling vB's frustrating tables is a whopping 125 and named wittingly (and does not bear repeating here, although wait until the final version).
I like reading my own comments:
Code:
span.postbit-counter
{
padding: 5px;
width: 18px;
height: 15px;
font-size: 12px;
font-family: Arial, Verdana, Helvetica, sans-serif;
font-weight: bold;
position: absolute;
left: 57px;
text-align: right;
border: 1px solid gray;
background-color: white;
color: black;
}
span.postbit-counter[class="postbit-counter"] /* stop freaking using IE, people, and you won't SEE hacks like this */
{
border: none !important;
background-color: inherit !important;
color: inherit;
background-image: url(../images/postcounterbg.png);
background-position: right center;
background-repeat: no-repeat;
}