Skip to main content
  Thursday, March 12 2015
  2 Replies
  5.6K Visits
  Subscribe
Hello

I already bought the Droppics component(is very good), but I do not have the latest version so before buying again, I wonder if I can have a single image in an article that when clicked displays the popup image and navigation in the gallery.
My tests with an older version does not seem possible when I click on the image, only the image is displayed and I can not browse the gallery.

Thank you in advance for your reply

Best Regards

(Joomla 3.4)
W
I answer, the trick in JS and CSS is simple:

Just use the image galleries normally in an article Joomla, and implement this:

JS:

(function($)
{
$(document).ready(function()
{


$('.droppicslightbox').find('.wimg:first').css({ 'display': "block" });

})
})(jQuery);



CSS:

.droppicsgallerydefault .wimg
{
display: none;
}

If it helps someone, I would have liked another solution that does not load all images possible, but this solution is right for me at the moment.

thank you
T
Hi,

Thanks for the question and answer by the way :)
This is something possible in the latest version indeed.

Cheers,
  • Page :
  • 1
There are no replies made for this post yet.