Look for this in stylesheet_tm.cs
Code:
.overtep .row91 .overtep_inner3 {
background: none repeat scroll 0 0 #190C03;
height: 11px;
}
And change it to
Code:
.overtep .row91 {
background: none repeat scroll 0 0 #190C03;
height: 11px;
}
.overtep_inner3 {
background: transparent;
height: 11px;
}
Look for this in stylesheet_main.css
Code:
#alsoPurchased h2.centerBoxHeading {
color: #000000;
font-family: Tahoma;
font-size: 14px;
font-weight: bold;
line-height: 16px;
padding: 0 10px 15px 0;
text-decoration: none;
text-transform: uppercase;
}
And change it to
Code:
#alsoPurchased h2.centerBoxHeading {
background: none repeat scroll 0 0 #FFFFFF;
color: #000000;
font-family: Tahoma;
font-size: 14px;
font-weight: bold;
line-height: 16px;
margin: 0 0 15px 0;
padding: 10px 15px;
text-decoration: none;
text-transform: uppercase;
}