July 18, 2024 at 10:36 pm
#10045062
Keymaster
You just need to add a DIV with the lightbox class this way:
<div class="lightbox" data-plugin-options="{'delegate': 'a', 'type': 'image', 'gallery': {'enabled': true}}">
<div class="owl-carousel owl-theme full-width" data-plugin-options="{'items': 5, 'loop': false, 'nav': true, 'dots': false}">
<div>
<a href="img/projects/project.jpg" aria-label="">
<span class="thumb-info thumb-info-centered-info thumb-info-no-borders">
<span class="thumb-info-wrapper">
<img src="img/projects/project.jpg" class="img-fluid" alt="">
<span class="thumb-info-title">
<span class="thumb-info-inner">Project Title</span>
<span class="thumb-info-type">Project Type</span>
</span>
<span class="thumb-info-action">
<span class="thumb-info-action-icon"><i class="fas fa-plus"></i></span>
</span>
</span>
</span>
</a>
</div>
</div>
</div>