Hey, sorry I haven’t gotten back to you on this, for some reason I thought I had.
There are a few ways to do this, but I’d say the easiest would be to open the slimbox2_autoload.js and replace:
[code:2fljbxf6]function slimbox_CSS(){jQuery(function(a){a("#lbOverlay").css("background-color",slimbox2_options.overlayColor);a("#lbPrevLink").hover(function(){a(this).css("background-image","url("+slimbox2_options.prev+")")},function(){a(this).css("background-image","")});a("#lbNextLink").hover(function(){a(this).css("background-image","url("+slimbox2_options.next+")")},function(){a(this).css("background-image","")});a("#lbCloseLink").css("background-image","url("+slimbox2_options.close+")")})}[/code:2fljbxf6]
with:
[code:2fljbxf6]function slimbox_CSS(){jQuery(function(a){a("#lbOverlay").css("background-color",slimbox2_options.overlayColor);a("#lbPrevLink").css("background-image","url("+slimbox2_options.prev+")");a("#lbNextLink").css("background-image","url("+slimbox2_options.next+")");a("#lbCloseLink").css("background-image","url("+slimbox2_options.close+")")})}[/code:2fljbxf6]
Assuming I didn’t make a typo that should do the trick.