Is there a way to make the gallery appear the same way that portfolio looks on mobile devices? What I mean is the portfolio moves all the images into a single column whilst the gallery just maintains the number of columns and shrinks everything down so it becomes hard to see what the tiny thumbnails are.
Hey Bimdas!
Would like to have a URL so i can properly answer your question,
Regards,
David
Hey!
Please add following code to Quick CSS in Enfold theme options under Styling tab
@media only screen and (max-width: 767px) {
#top #wrap_all .avia-gallery-1 .avia-gallery-thumb a {
width: 50%;
}}
Best regards,
Yigit
Hi Yigit,
Thanks for getting back to me. I’ve added the quick css you have given me but it doesn’t appear to have made any changes.The gallery images still appear the same way on my iphone.
Hi,
Try using this code instead:
@media only screen and (max-width: 767px) {
#top #wrap_all .avia-gallery-1 .avia-gallery-thumb a {
width: 50% !important;
}}
Cheers!
Josue
That did it, thanks Josue!