I am encountering an issue with fancybox related to implementing a UI that displays images in fancybox with a carousel option for sliding through the items.
Here is the desired UI layout:
https://i.sstatic.net/0wGO3.png
Here is the code I have been working on:
<link rel="stylesheet" type="text/css" href="jquery.fancybox.min.css">
<link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/@fancyapps/<a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="1177707f7268737e6951223f243f26">[email protected]</a>/dist/jquery.fancybox.min.css'>
<div class="gallery-section">
<div class="container-fluid" id="nospace">
<div class="gallery-box">
<div class="box vertical">
<a href="assets/img/portfolio/1.jpg" data-fancybox="gallery1">
<img src="assets/img/portfolio/1.jpg" class="img-fluid">
</a>
</div>
(more similar code blocks...)
</div>
</div>
</div>
<script src='https://cdn.jsdelivr.net/npm/@fancyapps/<a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="f89e99969b819a9780b8cbd6cdd6cf">[email protected]</a>/dist/jquery.fancybox.min.js'></script>
Seeking assistance with resolving this problem. Thank you. Feel free to ask any questions if needed.