Share option setting mobile view.

Posted in: Newspaper
Post count: 8

I need to remove pinterst sharing option from all posts & pages on my site in mobile view becausr its not relevant for me.

How do I change the setting to accomplish same?

Thanks
Saket….

Post count: 20688

Hi,

You could hide the social icon you don’t want on mobile with some css, like this
https://www.screencast.com/t/iQZesG6HT7B
Please try this code and see if it is working for you. Enter it in Theme panel->Custom Css

@media (max-width: 767px) {
.td-social-pinterest {
display: none!important;
}}

Thanks

Post count: 8

Hi Simon,

I tried what you suggested however, it didn’t work.

Currently, the site has following entry in custom CSS

.td-social-pinterest { display: none }
But pinterest icon is still visible, can you please take a look?

Post count: 20688

Hi,

The code works properly in mobile view, just like you asked
https://www.screencast.com/t/9VhXQMpA8Qt
If you want the code to apply in all cases use it like this
https://www.screencast.com/t/n7a0OkfjAU

.td-social-pinterest {
display: none!important;
}

Thanks

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