I am trying to add a link back to the home page index.php from my logo,
Cant figure it out. Appreciate any assistance,
Thanks
<div class="container-fluid" style="background-color:black;"><img class="img-responsive" src="assets/img/logo.png" data-bs-hover-animate="pulse" style="padding-top:20px;padding-bottom:20px;"></div>
Bill04,
You can wrap a tag around the image logo, like this:
<div class="container-fluid" style="background-color:black;">
<a href="index.php"><img class="img-responsive" src="assets/img/logo.png" data-bs-hover-animate="pulse" style="padding-top:20px;padding-bottom:20px;"></a>
</div>
Hope it works! Good luck.