Page 1 of 1

Open Image in Lightbox

Posted: Wed Jan 22, 2020 11:04 am
by Agalassi1792
Hello,

Is there a way to click to open a picture in a lightbox? Let me know, thanks!

Re: Open Image in Lightbox

Posted: Thu Jan 23, 2020 3:13 pm
by NoahBaldwin
This is possible!

Here's a link to a demo of this: https://demo.allprowebtools.com/Lightbox-Example/

Here's the code on the demo. You can also view the code in the HTML editor of the demo. Here's the link for that:
http://c220.allprowebtools-demo.com/con ... .php?id=40

Code: Select all

<p><a class="fancybox n1ed--selected" title="" href="/content/uploads/thank-you.jpg" data-fancybox-group="gallery-1"><img src="/content/uploads/thank-you.jpg?1579810863168" width="400" height="400" class=""></a></p>
<script type="text/javascript" src="//libdev.allprowebtools-dev.com/5.3/includes/fancybox/jquery.fancybox.pack.js?v=2.1.5"></script>
<script type="text/javascript">
	jQuery(function() {
		jQuery('.fancybox').fancybox();
	});
</script>

Re: Open Image in Lightbox

Posted: Thu Jan 23, 2020 4:40 pm
by Agalassi1792
Okay great, thank you! I try this out.

I appreciate the help!