Change the width of the exp_down.png, It is 58 px. then change the
Code:
.tlb2 span.selected a {main.css (line 124)
background:transparent url(../images/exp_down.png) no-repeat scroll 0pt;
color:#666666;
cursor:text;
display:block;
float:left;
font-weight:bold;
height:21px;
margin-right:8px;
padding-top:2px;
text-align:center;
width:58px; Change it to auto;
}
Or Remove the border off the image and change this:
Code:
.tlb2 span.selected a {main.css (line 124)
background:transparent url(../images/exp_down.png) no-repeat scroll 0pt;
Change it to:
Code:
.tlb2 span.selected a {main.css (line 124)
background:transparent url(../images/exp_down.png) repeat-x scroll 0pt;
Do the same for:
Code:
.tlb2 span a {main.css (line 122)
background:transparent url(../images/exp_on.png) no-repeat scroll 0pt 50%;
color:#6666CC;
cursor:pointer;
display:block;
float:left;
height:21px;
margin-right:8px;
padding-top:2px;
text-align:center;
width:58px;
}