How to Remove Featured from Single Post of Mobile Theme

Posted in: Newspaper
Post count: 9

Hi,
I just want to remove the featured image which appears at the beginning of single post in mobile theme. How can i do it?

  • This topic was modified 9 years by hkhasib.
Post count: 7909

Hi,

Do you use the Mobile Theme plugin?
In this case just paste this custom css to Theme Panel > Mobile Theme > Custom Css – http://screencast.com/t/LMDfjIqR3l

.td-post-featured-image {
display: none;
}

If you are not using the Mobile Theme plugin, you can use media queries and paste the code in Theme Panel > Custom Css: http://screencast.com/t/GzgDh78I

@media(max-width: 767px) {
.td-post-featured-image {
display: none;
}
}

Thanks!

Post count: 9

Thank you. I’m using mobile theme plugin and it worked 🙂

Viewing 3 posts - 1 through 3 (of 3 total)
The forum ‘Newspaper’ is closed to new topics and replies.