I have pasted all the links from lightbox bootstrap but lightbox is not working and also I m unable to do change in the size of my images,I am using source unsplash for random images and every random image have different heights, I gave 560 width and height first then I gave different widths and heights to check but nothing changed.
<head>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/ekko-lightbox/5.3.0/ekko-lightbox.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/ekko-lightbox/5.3.0/ekko-lightbox.min.js"></script>
</head>
<!--image gallery-->
<section id="gallery">
<div class="container">
<h1 class="text-center">Photo Gallery</h1>
<p class="text-center">Check out our photos</p>
<div class="row p-4">
<div class="col-md-4 mb-5">
<a href="https://source.unsplash.com/random/560*560" data-toggle="lightbox" data-gallery="img-gallery" data-width="560" data-height="560">
<img src="https://source.unsplash.com/random/560*560" alt="" class="img-fluid">
</a>
</div>
<div class="col-md-4 mb-5" >
<a href="https://source.unsplash.com/random/561*561" data-bs-toggle="lightbox" data-gallery="img-gallery" data-width="561" data-height="561">
<img src="https://source.unsplash.com/random/561*561" alt="" class="img-fluid">
</a>
</div>
<div class="col-md-4 mb-5">
<a href="https://source.unsplash.com/random/562*562" data-bs-toggle="lightbox" data-gallery="img-gallery" data-width="562" data-height="562">
<img src="https://source.unsplash.com/random/562*562" alt="" class="img-fluid">
</a>
</div>
</div>
<div class="row">
<div class="col-md-4 mb-5">
<a href="https://source.unsplash.com/random/563*563" data-bs-toggle="lightbox" data-gallery="img-gallery" data-width="563" data-height="563">
<img src="https://source.unsplash.com/random/563*563" alt="" class="img-fluid">
</a>
</div>
<div class="col-md-4 mb-5">
<a href="https://source.unsplash.com/random/564*564" data-bs-toggle="lightbox" data-gallery="img-gallery" data-width="564" data-height="564">
<img src="https://source.unsplash.com/random/564*564" alt="" class="img-fluid">
</a>
</div>
<div class="col-md-4 mb-5">
<a href="https://source.unsplash.com/random/565*565" data-bs-toggle="lightbox" data-gallery="img-gallery" data-width="565" data-height="565">
<img src="https://source.unsplash.com/random/565*565" alt="" class="img-fluid">
</a>
</div>
</div>
</div>
</div>
</section>
<script>
$(document).on('click', '[data-toggle="lightbox"]', function(event) {
event.preventDefault();
$(this).ekkoLightbox();
});
</script>