Hi there,
Same problem as described in this thread:
I used the code suggested and increased the max width of the screen so it includes tablets as well (I guess?)
@media only screen and (max-width: 3000px) {
.avia_desktop .av-caption-on-hover .av-masonry-item-with-image.av-masonry-entry:hover .av-inner-masonry-content {
opacity: 0 !important;
display: none !important;
}}
but no success. It works fine on desktop and mobile phone but not on tablets!
Any ideas? Many thanks!!
Hey mijyman!
Please use following code instead
@media only screen and (max-width: 1024px) and (min-width: 768px) {
.av-inner-masonry-content.site-background {
display: none !important;
}}
Regards,
Yigit
Hi,
thanks for your reply. I used the code but still no success – I’m using an android based tablet – maybe it doesn’t know it’s a tablet? I don’t have an ipad or similar to test on….
Any ideas?
Thanks!
PS: i cleared cache etc. so that shouldn’t be the problem
Hi,
Had to increase the max width to 1900px but it works! Shouldn’t create any issues with laptops etc right?
Thanks :)