Hi,
How would I go about have the masonry element of my website on mobile be 2 columns instead of 1?
Hey arallon,
Add this to quick css:
@media only screen and (max-width: 768px) {
.av-masonry-entry { width: 50%; }}
Best regards,
Jordan Shannon
Jordan,
With the provided code I’m still seeing 1 column of images on my mobile.
Hi,
Did you add the code to the very top of quick css so it runs first? Also, clear the cache a few times over.
Best regards,
Jordan Shannon
Yes, I did. It seems to not work.
Hi,
Thank you for the update.
Try to adjust the max-width value in the css media query from 768px to 480px.
@media only screen and (max-width: 480px) {
.responsive #top .av-masonry-entry {
width: 49.9% !important;
}
}
Please don’t forget to toggle the Performance > File Compression settings after adding the code.
Best regards,
Ismael