Up to 70% off on hosting for WordPress Websites $2.95 /mo

Csshint recommends hosting
snippets

arrow style breadcrumb navigation

Here are going to create classic arrow style breadcrumb navigation element which helps to users understand where they are on a website. This Amazing Breadcrumbs snippet designed by Zywave Team.

arrow style breadcrumb navigation

Demo : arrow style breadcrumb navigation


Html

[code language=”html”]
<span class="breadcrumbs">
<a href="#" class="breadcrumb">
<i class="fa fa-home"></i>
Home
</a>
<a href="#" class="breadcrumb">Good luck</a>
<a href="#" class="breadcrumb">Finding your way</a>
<a href="#" class="breadcrumb">Through this</a>
<span class="breadcrumb">Website</span>
</span>
[/code]

CSS / SCSS

[code language=”css”]
////////////////////////////////////////////////////////////////////////////////
//
// Prototype: Breadcrumbs
//
////////////////////////////////////////////////////////////////////////////////

// Default styling
// —————————————————————————–

@import url(https://fonts.googleapis.com/css?family=Open+Sans:400italic,700italic,400,300,700);

%clearfix {
&:after {
content: ”;
display: table;
clear: both;
}
}

%link-style {
color: tomato;
text-decoration: none;
cursor: pointer;

&:hover {
color: darken(tomato, 20%);
text-decoration: underline;
}
}

*,
*:before,
*:after {
box-sizing: border-box;
}

html {
height: 100%;
color: black;
font-family: ‘Open Sans’, sans-serif;
font-weight: 400;
font-style: normal;
font-size: 62.5%;
line-height: 1;
}

body {
height: 100%;
padding: 3em;
font-size: 1.4rem;
overflow-x: hidden;
background-color: lightGray;
}

a { @extend %link-style; }

// Basic breadcrumb styles
// —————————————————————————–

.breadcrumb {
display: inline-block;
float: left;
position: relative;
margin-top: 0.25em; // Allows for breadcrumb wrapping
margin-right: 0.5em;
margin-bottom: 0.25em; // Allows for breadcrumb wrapping
padding: 0.5em;
background-color: white;
color: gray;
white-space: nowrap;

&:after {
content: ”;
position: absolute;
top: 0;
left: 100%;
border-width: 1em 0.25em 1em 0.5em;
border-style: solid;
border-color: transparent transparent transparent white;
}

+ .breadcrumb {
margin-left: 0.75em;

&:before {
content: ”;
position: absolute;
top: 0;
right: 100%;
border-width: 1em 0.25em 1em 0.5em;
border-style: solid;
border-color: white white white transparent;
}
}
}

// Less specific way of building breadcrumbs. Doesn’t matter what elements
// or classes you use, as long as the root class is applied to a container.
// —————————————————————————–

//.breadcrumbs {
// > * {
// display: inline-block;
// float: left;
// position: relative;
// margin-top: 0.25em; // Allows for breadcrumb wrapping
// margin-right: 0.5em;
// margin-bottom: 0.25em; // Allows for breadcrumb wrapping
// padding: 0.5em;
// background-color: white;
// color: gray;
// white-space: nowrap;
// }
//
// > *:after {
// content: ”;
// position: absolute;
// top: 0;
// left: 100%;
// border-width: 1em 0.25em 1em 0.5em;
// border-style: solid;
// border-color: transparent transparent transparent white;
// }
//
// > * + * {
// margin-left: 0.75em;
//
// &:before {
// content: ”;
// position: absolute;
// top: 0;
// right: 100%;
// border-width: 1em 0.25em 1em 0.5em;
// border-style: solid;
// border-color: white white white transparent;
// }
// }
//}
[/code]

Breadcrumbs Demo