It's an old topic - but perhaps somebody want also to know this:
In Joomla 1.5 open this file:
/plugins/content/jw_sigpro/popup_engines/jquery_slimbox/css/slimbox2.css
old Code (starting from 33):
#lbPrevLink, #lbNextLink {
display: block;
position: absolute;
top: 0;
width: 50%;
outline: none;
}
#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%;
}
change it to this:
#lbPrevLink, #lbNextLink {
display: block;
position: absolute;
top: 0;
width: 50%;
outline: none;
}
#lbPrevLink {
left: 0;
background: transparent url(prevlabel.gif) no-repeat 0 15%;
}
#lbPrevLink:hover {
background: transparent url(prevlabel.gif) no-repeat 0 15%;
}
#lbNextLink {
right: 0;
background: transparent url(nextlabel.gif) no-repeat 100% 15%;
}
#lbNextLink:hover {
background: transparent url(nextlabel.gif) no-repeat 100% 15%;
}
It works for me :)
Best regards
Mark