Need option to show or hide featured image depending on device

Posted in: Newsmag
Post count: 16

Hey… loving Newsmag!

I’ve got a feature request or does anyone know how to do this.

I found the setting for “Featured Images” inside the Theme Panel and I see there is a way to turn them off or on.

I have a need to turn them off for desktop on the post page but want them to show on mobile.

It would be nice to add 2 selectors…. Show featured image desktop, Show featured image mobile.

I still want them to always show on the homepage.

Anyone know a way to do this?

Thanks,

Joel

Post count: 6535

HI

Thanks for your suggestion, I’ve added it on our todo list and when the time comes developers will consider it for future updates. However this may take some times as we have a very long list with feature requests and we have to take them one by one.
A temporary solution would be to use media queries with css in theme panelo > custom code > custom css:

@media (min-width: 768px){
.single .td-post-featured-image{
display: none!important;
}
}

This code will hide the featured image on posts for desktop and tablets and on mobile they will be visible.
Hope this helps.
Thanks!

Post count: 16

Thank you so much! That worked perfect 🙂

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