Hey guys, I have a gallery on my site and have the image height restrained, but the hover causes a bit of a mess. Please seem the mentioned site. The goal is to limit the image height so they are all the same and make sure the hover effect is also the same as the restricted image height.
Hi David!
Try adding this:
#top .avia-gallery .avia-gallery-thumb a:hover{
overflow: hidden;
}
Regards,
Josue
Hey there Josue,
Tried – no luck. Still showing an issue on hover.
Hey David!
Discard my previous suggestion, instead change your code:
.avia-gallery-thumb a {
max-height: 265px!important;
}
to:
.avia-gallery-thumb a img {
max-height: 265px!important;
}
Cheers!
Josue
Perfect work! Really appreciate it Josue.
You are welcome, always glad to help :)
Regards,
Josue