Archived topic
I Don't Want Thumbnails on Mobile
3 replies · Started by Ernest on January 21, 2018
Viewing posts 1–4 of 4
Hello. I'm building a blog and everything came out perfect. I have thumbnails on the left hand side of the blog post when viewed on desktop. However, I don't want any thumbnails to show up when viewing on mobile devices, just the title and post. How can I remove/hide thumbnails for mobile view only?
Hi there,
Try this CSS:
@media (max-width: 768px) {
.post-image {
display: none;
}
}
Adding CSS: https://docs.generatepress.com/article/adding-css/
Thanks. That work beautifully.
No problem :)
This archived topic is closed to new replies.