its css driven and uses a table to display,
CSS:
Code: Select all
#barRight {
background-image: url(../img/images/right.png);
background-repeat: no-repeat;
height: 17px;
width: 15px;
}
#barLeft {
background-image: url(../img/images/left.png);
background-repeat: no-repeat;
height: 17px;
width: 15px;
}
#barMid {
background-image: url(../img/images/middle.png);
background-repeat: repeat-x;
height: 17px;
}Code: Select all
<table width="100%" cellpadding="0" cellspacing="0"><tr><td id="barLeft"></td><td id="barMid"></td><td id="barRight"></td></tr></table>i am confuzzeled beyond all beleif

