I've seen your Sexy Lightbox Lite in action on Joomla other sites and loved it, but can't seem to get it to work on mine.
Using in conjunction with gallerific.js
Code: |
// Construct new hidden span for the image
var newSlide = this.$imageContainer
.append('<span class="current"><a href="'+url_modified+'" rel="sexylightbox" title="Main Image" style="float:left;"></a></span>')
.find('span.current').css('opacity', '0');
newSlide.find('a')
.append(imageData.image)
.click(function(e) {
e.preventDefault();
});
|
I have manually called
Code: |
<link rel="stylesheet" href="/plugins/content/arisexylightboxlite/arisexylightboxlite/js/sexylightbox.css" type="text/css" media="screen" />
<script type="text/javascript" src="/plugins/system/t3/base-bs3/js/search.js"></script>
<script src="/plugins/content/arisexylightboxlite/arisexylightboxlite/js/jquery.easing.js" type="text/javascript"></script>
<script src="/plugins/content/arisexylightboxlite/arisexylightboxlite/js/jquery.sexylightbox.min.js" type="text/javascript"></script>
|
in the head of the page.
Any help is appreciated!