Hi Enfold team,
i added the following Quick CSS to my site in order to hide masonry images on desktops (as the title can be seen via mouse over):
/*Masonry Image title hide on desktop*/
@media only screen and (min-width: 960px) {
.av-inner-masonry-content {
display:none !important;
}
Unfortunately this somehow messes up my site completely in resolutions betwenn 768px and 960px width.
E.g. navigation menu display, shopping cart symbol, Category text and backgound color/size. Like it’s disabling a bunch of other code i added…
And i do need to hide those masonry titles above 960px width…
Please help me to solve this.
Tobi
Hey Tobias,
Looks like you didn’t close the media query, try this instead:
@media only screen and (min-width: 960px) {
.av-inner-masonry-content {
display:none !important;
}
}
Best regards,
Rikard
Ah, this was exactly the one thing i did not check ;-)
This solves everything.
Awesome help, thanks Rikard
Thread can be closed