MG 2.3 Remove overlay on images?

ArtG

Active member
Screenshot 2025-04-07 at 5.59.04 PM.webp
Is there a way to remove the image overlay text on mobile? When using a desktop, the overlay doesn't show but it is always on on mobile.

Thanks
 
Is there a way to remove the image overlay text on mobile? When using a desktop, the overlay doesn't show but it is always on on mobile.
If I'm understanding you right, this may work.

Add this to your extra.less template

@media only screen and (max-width: @xf-responsiveNarrow) and (max-width: @xf-responsiveMedium) {
[data-template="xfmg_media_index"] .itemList-itemOverlay,
[data-template="xfmg_album_index"] .itemList-itemOverlay,
[data-template="xfmg_album_view"] .itemList-itemOverlay,
[data-template="xfmg_category_view"] .itemList-itemOverlay
{
display: none;
}
}
 
Last edited:
Back
Top Bottom