Back to top link in mobile

Posted in: Newspaper
Post count: 11

I wonder how to show back to top link in mobile? In tablet and PC, the link is shown at the bottom right corner but in mobile, I can not see it.
Thanks

Post count: 64

Hi,

I also had some issues with the scroll up button. It still doesn’t work for me in some rare cases like old ie mobile devices, but it’s like 0.1% of visitors so I don’t care.

In your case, it can be a bit of css:
line 20212 of style.css (newspaper 6.4)
@media (max-width: 767px) {
.td-scroll-up-visible {
display: none;
}
}

I think it should be like this (at least I changed mine and it shows the button in mobiles):
@media (max-width: 767px) {
.td-scroll-up-visible {
display: block !important;
}
}

You can try to replace the code in style.css file or paste the second block of code in the “custom css” section of the theme panel.
Hope this helps, cheers!

Post count: 6535

Hi

Thanks @nf_prt !

@yenctt
let me know if you need additional assistance on this!

Thanks!

Post count: 11

It works like charm. Thanks @nf_prt!

Viewing 4 posts - 1 through 4 (of 4 total)
You must be logged in to reply to this topic.