Hi,
I found it, here's the code for anyone else who wants this:
Code:
.progressbar {
width:500px;
height:30px;
-webkit-border-radius:6px;
-moz-border-radius:6px;
border-radius:6px;
background-color:#ffffff;
text-transform:uppercase;
padding:0;
margin:0;
}
.progressbar li {
list-style-type:none;
float:left;
width:125px;
padding:0;
margin:0;
text-align:center;
font:14px/30px Arial;
}
.progressbar li strong {
float:left;
text-align:center;
margin:0 26px;
}
.progressbar li#p1 {
-webkit-border-top-left-radius:6px;
-webkit-border-bottom-left-radius:6px;
-moz-border-radius-topleft:6px;
-moz-border-radius-bottomleft:6px;
border-top-left-radius:6px;
border-bottom-left-radius:6px;
}
.progressbar li#p4,.progressbar li#p4.current_step span.next_arrow {
-webkit-border-top-right-radius:6px;
-webkit-border-bottom-right-radius:6px;
-moz-border-radius-topright:6px;
-moz-border-radius-bottomright:6px;
border-top-right-radius:6px;
border-bottom-right-radius:6px;
}
.progressbar li span.next_arrow {
width:20px;
height:30px;
display:block;
float:right;
}
.progressbar li.completed_step span.next_arrow {
background:url('../images/progressbar_bg.gif') repeat-x right top
}
.progressbar li.completed_step
{
background:url('../images/progressbar_bg.gif') repeat-x 0px 0px;
color:#fff;
}
.progressbar li.current_step span.next_arrow {
background:url('../images/progressbar_bg.gif') repeat-x right -60px
}
.progressbar li#p4.current_step span.next_arrow {
background:url('../images/progressbar_bg.gif') repeat-x left -60px
}
.progressbar li.current_step {
background:url('../images/progressbar_bg.gif') repeat-x 0px -60px;
color:#fff;
}
HTML Code:
Code:
<ol class="progressbar">
<li id="p1" class="current_step"><strong>Step 1</strong><span class="next_arrow"></span></li>
<li id="p2" class="next_step"><strong>Step 2</strong><span class="next_arrow"></span></li>
<li id="p3" class="next_step"><strong>Step 3</strong><span class="next_arrow"></span></li>
<li id="p4" class="next_step"><strong>Step 4</strong><span class="next_arrow"></span></li>
</ol>
1 image is required which is attached. Please download that.
progressbar_bg.gif
Hope this helps!
Thanks.
Bookmarks