Alex wrote:
... to have it only appear on hover?
Yes, it's possible,here is a code
.modal-description {
position: absolute;
bottom: 0;
background: rgba(255,255,255, .8);
opacity: 0;
transition: 0.6s;
}
.ba-modal-body:hover .modal-description {
opacity: 1;
}
We can make it full width with a light animation from the bottom, or any another style for description can be done. It's not a problem. But change Image Resizing script, it's another question...
Thanks,
Artem