Appreciate the assistance so far. This issue is a bit tricky for me, as it involves jquery which I'm not well-versed in.
My aim is to make my image clickable.
<div class="col-lg-6 col-sm-12 mt-3">
<a class="portfolio-box" href="img/portfolio/fullsize/2.jpg">
<img class="img-fluid" src="img/gofar_square.jpg" alt="">
<div class="portfolio-box-caption">
<div class="project-category text-white-50">
Category
</div>
<div class="project-name">
Gofar
</div>
</div>
</a>
</div>
However, whenever I click on the image, a popup gallery appears stating that it can't find the image.
Further investigation revealed that the jquery file (magnifico popup) is causing this issue.
My question is how can I remove this effect? My intention is just to have a clickable image that leads to another HTML page.
Thank you once again for your help.