Hello,
How can I change the pictures on the slideshow - while my mouse is over the thumbnail picture in addition to clicking on it?
On the Avisio theme.
Thanks
Hello,
How can I change the pictures on the slideshow - while my mouse is over the thumbnail picture in addition to clicking on it?
On the Avisio theme.
Thanks
Hey,
in js/custom.js replace:
$(this).click(function()
{
$(controlls[i]).trigger('click');
return false;
});
with:
$(this).hover(function()
{
$(controlls[i]).trigger('click');
return false;
});Thanks , you helped me a lot!
Glad that I could help you :)
You must log in to post.