CSS Library: Links & Buttons: Here
CSS Breadcrumbs
Author: Dynamic Drive
Breadcrumbs is a term used to describe hierarchical links that tell the visitor where he/she currently is on your site. Visually breadcrumbs are just links with some sort of separator between them, such as a bullet image. This CSS code transforms ordinary looking links into a breadcrumb by giving each link a background image.
There are many different ways to implement breadcrumbs in CSS. Ideally the separator image should not even be part of the link, but dynamically inserted using CSS Generated content. However, since IE6 does not support generated content, that's not feasible at the moment. Then there's the debate over whether breadcrumbs should be implemented as a list, which I personally think is no more appropriate than just using regular <a> elements.
Demo:
The bullet image:
The CSS:
Got a question or need help customizing this CSS code? Post it in the CSS Forums. If you have a comment or suggestion instead, post it in the comments section below.
Comment Pages 3 of 4 pages < 1 2 3 4 >
Car Hire Majorca Airport
love the html one as well...perfect for styling
div.breadcrumbs {
padding: 1em 0;
text-align: left;
font-size: 90%;
margin: 0 1em;
border-bottom: 1px solid #660000;
}
Here is the template code:
<div class="breadcrumbs">
{breadcrumbs starttext='You are here' root='Home' delimiter='»'}
<span style="text-align: right; font-size: x-small;">Phone: (123) 123-4567</span></div>
<hr>
Any suggestions?
Thank you in advance for your time.
Dawn
<script type="text/javascript">
$(document).ready(function() {
// Clean up the trailing arrow on the breadcrumbs
$('div#breadcrumbs a:last').css("background","none");
});
</script>


I am glad that this was created - it shows that dynamic isn't always the answer.
Cheers