Hi @Coreysan
You can use Bootstrap's modal. You can name a button your item to achieve the function you want.
<button type="button" data-toggle="modal" data-target="#ProductModal">
Product1
</button>
<div class="modal fade" id="ProductModal" tabindex="-1" role="dialog" aria-labelledby="ProductModalLabel" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
....
</div>
<div class="modal-body">
...
</div>
<div class="modal-footer">
....
</div>
</div>
</div>
</div>
I think this document is of great help to you:
Best regards,
Qi You
If the answer is the right solution, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.