hi,
When I use this plugin to display Facebook photos, the portfolio hover effect shows up (and mis-aligned) which should not happen because I already disabled the Enfold lightbox effect. It only happens on the first row of the photos, rest of it works fine.
http://screencast.com/t/vmxfEqGf
could you help?
thanks :)
also,
Is it possible to co-exist enfold lightbox effect with the plugin’s lightbox effect? There is a duplicate lightbox popping up when I enable the enfold lightbox with the plugin, but I ‘ll need the enfold lightbox in other pages…
Hi!
Try adding this to your custom CSS.
.image-overlay { display: none !important; }
Or if your just using it on that page then try dragging a codeblock element to your page content and add this inside.
<style type = "text/css">
.image-overlay { display: none !important; }
</style>
As for the double popups. You could try changing line 899 in the /js/avia.js file from this.
exclude : '.noLightbox, .noLightbox a, .fakeLightbox, .lightbox-added, a[href*="dropbox.com"]',
To this.
exclude : '.page-id-2681 a, .noLightbox, .noLightbox a, .fakeLightbox, .lightbox-added, a[href*="dropbox.com"]',
Regards,
Elliott
works out perfectly, thank you very much