Archived topic
Blog post title only on mobile devices
3 replies · Started by Ernest on January 23, 2018
Thanks for the CSS code that helped remove the thumbnail images on the blog post when viewed on mobile devices.
Next question. I'm working on a blog and I set the "Excerpt word count" to 20 words so only a sentence appears on the blog home page right below the title.
However, how can I remove/hide the text on the blog post body when viewed on mobile devices so only the blog post title appears?
Hi there,
This CSS should work:
@media (max-width: 768px) {
.entry-summary {
display: none;
}
}
Thanks. It worked.
No problem :)