Hi,
I have it set to only show the post title on mouse roll over. It works on desktop but on mobile, the title is on and interfering with the image.
Is there a switch or code snippet? I used to have it work that way but all my theme settings were recently lost and I do not recall how I solved that issue.
Here is a link for reference:
http://www.gregorybeylerian.com/artwork/
Thanks
GB
Hey gb,
Please try the following in Quick CSS under Enfold->General Styling:
@media only screen and (max-width: 767px) {
.av-inner-masonry-content {
display:none !important;
}
}
Best regards,
Rikard
Hi Rikard,
That code snippet did not work for me but this one did:
@media only screen and (max-width: 989px) {
figcaption.av-inner-masonry-content {
display: none !important;
}
}
All the best,
GB
Hi,
Glad that it’s fixed. The code you used will also affect tablet/ipad in portrait mode, if you want it only for mobile you can replace 989px to 767px.
Hope this additional information helps :)
Best regards,
Nikko