Tagged: gallery
Hello,
I’m trying to implement a 3 column gallery on my homepage and the gallery will not align correctly. I think it has something to do with the first_thumb label.
It’s under the section labeled “events” – http://dev.konnektive.com/
Thanks!
Sam
Hey Konnektive!
Please add following code to Quick CSS in Enfold theme options under Styling tab
@media only screen and (min-width: 1140px) {
#top #wrap_all .avia-gallery-1 .avia-gallery-thumb a { height: 182px; }}
@media only screen and (min-width: 990px) and (max-width: 1139px) {
#top #wrap_all .avia-gallery-1 .avia-gallery-thumb a { height: 161px; }}
@media only screen and (min-width: 768px) and (max-width: 989px) {
#top #wrap_all .avia-gallery-1 .avia-gallery-thumb a { height: 122px; }}
@media only screen and (min-width: 481px) and (max-width: 767px) {
#top #wrap_all .avia-gallery-1 .avia-gallery-thumb a { height: 104px; }}
@media only screen and (max-width: 480px) {
#top #wrap_all .avia-gallery-1 .avia-gallery-thumb a { height: 67px; }}
Cheers!
Yigit
Thank you!!