Thread Starter
dhkent
(@dhkent)
Worked great with a little tweaking, thank you so much!
xoxox
d
Thread Starter
dhkent
(@dhkent)
Indeed! this solved the hover problem, and thank you so so so much!!
however when the caption is moved underneath the image it disappears
I have diagnosed this from the “overflow: hidden” aspect of the szg-main class
.szg-main {
min-height: 30px;
position: relative;
overflow: hidden;
margin-bottom: 5em;
cursor: crosshair;
cursor: -webkit-zoom-in;
cursor: -moz-zoom-in;
-webkit-transition: 0.5s;
-moz-transition: 0.5s;
-ms-transition: 0.5s;
-o-transition: 0.5s;
transition: 0.5s;
}
When I turn this to visible however, the full size image appears underneath the caption…
I’ve also tried to add ‘overflow: visible !important;’ to the szg-caption class, but no dice…
Thanks again for your help, hopefully this can be figured out..