Can you help me with a simple question? I am currently working on building my portfolio using html
https://i.stack.imgur.com/rxYRS.png
I want to be able to click on an image and add the description of my choice. Right now, it is showing something else:
https://i.stack.imgur.com/zUCRH.png
Here is a snippet of the code related to this:
Thank you for your assistance!
<!-- item -->
<div class="project-item">
<!-- ==> Put your thumbnail as a background -->
<a href="img/portfolio/p2.jpg" class="project-thumbnail nivobox" data-lightbox-gallery="portfolio" style="background-image: url('img/portfolio/thumb-p2.jpg');">
<!-- project-description -->
<div class="project-description-wrapper">
<div class="project-description">
<!-- project name -->
<h2 class="project-title">Project Title</h2>
<!-- /project name -->
<span class="see-more">Project Tags</span>
</div>
</div>
<!-- /project-description -->
</a>
</div>
<!-- /item -->