The CSS file to change is squirrelcart/lib/slimbox/slimbox.css.php
Changed this:
Code:
#lbPrevLink {
left: 0;
}
#lbPrevLink:hover {
background: transparent url(prevlabel.gif) no-repeat 0 15%;
}
#lbNextLink {
right: 0;
}
#lbNextLink:hover {
background: transparent url(nextlabel.gif) no-repeat 100% 15%;
}
to this:
Code:
#lbPrevLink {
background: transparent url(prevlabel.gif) no-repeat 0 15%;
left: 0;
}
/*
#lbPrevLink:hover {
background: transparent url(prevlabel.gif) no-repeat 0 15%;
}
*/
#lbNextLink {
background: transparent url(nextlabel.gif) no-repeat 100% 15%;
right: 0;
}
/*
#lbNextLink:hover {
background: transparent url(nextlabel.gif) no-repeat 100% 15%;
}
*/
Works for me!
Phil,
Tucson