Currently when users mouse over the images in my blogs a magnifying glass shows up and they can click it to see an enlarged image.
Can I turn this off for all images in my blogs?
I still want this in the Portfolio images though.
Thanks!
Currently when users mouse over the images in my blogs a magnifying glass shows up and they can click it to see an enlarged image.
Can I turn this off for all images in my blogs?
I still want this in the Portfolio images though.
Thanks!
Hey,
I'm not sure if the lightbox function is flexible enough but you can try to apply it to certain elements only. Open up js/custom.js and replace:
// activates the lightbox page
my_lightbox("a[rel^='prettyPhoto'], a[rel^='lightbox']",true);
with:
// activates the lightbox page
my_lightbox(".wrapper_portfolio a[rel^='prettyPhoto'], .wrapper_portfolio a[rel^='lightbox']",true);
If you'd like to deactivate the lightbox just delete the code.
You must log in to post.