Reputation: 21
Here is my code where I want to display images. I linked lightbox css and js properly and it's working, but when images is display it comes with menu bar which i don't want.
<div class="carousel-item <?php echo $isActive ? 'active' : ''; ?>">
<a href="<?php echo $photo['filepath']; ?>" data-lightbox="product-photos">
<img src="<?php echo $photo['filepath']; ?>" alt="Product Image" style="width: 200px; height: 200px;">
</a>
</div>
I have attached screenshot of it for better understanding. Can anyone help me with this. Thank You.
Upvotes: 0
Views: 101