I am using a website template on Cargo Collective. On the Home page, there is a grid of images with text that only appears on hover. In Mobile view, the text does not appear. I understand hover doesn't work consistently on mobile devices. Is there a way to set this text to appear when the page loads on mobile?
Alternatively, how would I remove the hover functionality and have the text always visible?
Here are the two spots where hover appears in the CSS:
[data-predefined-style="true"] bodycopy a:hover {
}
bodycopy a.image-link,
bodycopy a.icon-link,
bodycopy a.image-link:hover,
bodycopy a.icon-link:hover {
 border-bottom: 0;
 padding-bottom: 0;
}/**
 * Thumbnail Hover
 */
.thumbnails .thumbnail > a {
 position: relative;
}
.thumbnails .thumbnail .title {
 background: rgba(0, 0, 0, 0.4);
    padding: 0.5rem 1.2rem 0.7rem 1.2rem;
    margin: 2.4rem;
    color: rgba(255, 255, 255, 1);
    align-content: center;
    display: flex;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 9;
    opacity: 0;
}
.thumbnails .title span {
 margin: auto;
 display: inline-block;
}
.thumbnails .thumbnail:hover .title {
    opacity: 1;
}
body.mobile .thumbnails .thumbnail:hover .title {
 opacity: 0;
} 
     
    