thn google
+13,700
twitter big logo icone 5336 48
1,755
Advertisers Tag Here
Join over 45,931 Daily Readers, Users, Subscribers
..who get notifications via Emails !
Jobs

3 Sept 2012

BreadCrumb Design CSS ~ FastForward

Design 4 ~ FastForward
Lots Of website today use Breadcrumb in their website, It help audience to navigate easily through  your website. Not only it help you audience to navigate quickly, but also make your blog|website look better. and all we know that beautiful website attract traffic.

  • Make sure Your website have Breadcrumbs
  • Remove all the previous Breadcrumbs CSS Codes.from your website.
  • We have used common HTML structure. 

1<div class='breadcrumbs' >
2<a class='first' href='#' ><span>Home</span></a>
3<a href='#' ><span>CSS3</span></a>
4<a href='#' ><span>Widgets</span></a>
5</div>


.breadcrumbs{list-style:none;margin:0}
.breadcrumbs a span::after{background:#DDD;content:"";height:2.5em;margin-top:-1.25em;position:absolute;right:-1em;top:50%;width:2.5em;z-index:-1;-webkit-transform:rotate(45deg);-moz-transform:rotate(45deg);-ms-transform:rotate(45deg);-o-transform:rotate(45deg);transform:rotate(45deg);-moz-border-radius:.4em;-webkit-border-radius:.4em;border-radius:.4em}
.breadcrumbs a{text-decoration:none;color:#444;background:#DDD;position:relative;z-index:1;float:left;text-shadow:0 1px 0 rgba(255,255,255,.5);-moz-border-radius:.4em 0 0 .4em;-webkit-border-radius:.4em 0 0 .4em;border-radius:.4em 0 0 .4em;margin:0 2em 0 0;padding:.7em 1em .7em 2em}
.breadcrumbs a:hover,.breadcrumbs a:hover > span:after{background:#f1f1f1;color:#333}