Hello at Kriesi,
is it possible to not show the caption but the image when using the masonry element showing portfolio entries? I want the same image as in desktop mode. I have tried
@media only screen and (max-width: 767px) {
figcaption.av-inner-masonry-content.site-background {
display: none;
}}
from https://kriesi.at/support/topic/masonry-gallery-in-mobile/ but this does not work.
Best Regards
Hey Sigmund,
Try this code in the General Styling > Quick CSS field:
@media only screen and (max-width: 1024px) {
figcaption.av-inner-masonry-content.site-background {
display: none!important;
}}
For me your site had that behavior up to 1024px, but you can adjust to suit.
Another option:
@media only screen and (max-width: 1024px) {
.main_color .container .av-inner-masonry-content {
display: none!important;
}}
Best regards,
Mike
Thanks, Mike, that works for me!
Best Regards