Return to Top button – Newspaper X – not appearing on mobile

Posted in: Newspaper
Post count: 16

Hi,
The “Return to Top” button works well with Newspaper 8 on all sizes, but it does not appear on Newspaper X for mobile users. (It does appear on Desktop and iPad)

You can see the issue here at the tagdiv demo site:

https://demo.tagdiv.com/newspaper_baby_pro/category/baby/

Do you have some code to fix this for mobile?

Thanks so much!

Post count: 10

I think it’s not meant to display on mobile devices (all themes).
https://demo.tagdiv.com/newspaper_baby_pro/wp-content/plugins/td-composer/legacy/Newspaper/assets/css/td_legacy_main.css
@media (max-width: 767px)
.td-scroll-up {
display: none;
}

you have to override it in a custom css to make it appear in mobile
@media (max-width: 767px)
.td-scroll-up {
display: block;
}

Post count: 16

Thanks Vetshopdeveloper! It works! Slight adjustment:

@media (max-width: 767px) {
.td-scroll-up {
display: block;
}
}

(there should be indentations in the above code)

This button has it’s greatest use in mobile. I can’t understand why they would not have it showing, it always was before in Newspaper 8. But case solved!

  • This reply was modified 5 years by GARBAR.
  • This reply was modified 5 years by GARBAR.
  • This reply was modified 5 years by GARBAR.
  • This reply was modified 5 years by GARBAR.
Viewing 3 posts - 1 through 3 (of 3 total)
The forum ‘Newspaper’ is closed to new topics and replies.