'scroll back on top Arrow'

Posted in: Newspaper
Post count: 100

I noticed that within the template on the right down corner on my website there is an arrow that will scroll me back up to the top on the page when I click on it. Is there a way that I can make this arrow disappear or change it?

Thanks!

Post count: 30

Up for this. I wanted to know also how to change it from bottom right, to bottom left placement. Thanks!

Post count: 20685

Hi,

The scroll to top arrow does not have any options to change it. It could be customized with custom CSS code, depending on what you would like to do to it.
A code like this in Theme panel->Custom CSS will remove it

.td-scroll-up {
display: none;
}

A code like this will align it to the left
https://www.screencast.com/t/sfpRytLmi

.td-scroll-up {
left:5px;
}

You can use the browser inspector to further customize the button, if you wish
https://forum.tagdiv.com/create-custom-code-using-the-browsers-inspector/

Thanks

Post count: 3

Hi!

Is there an option to show the scrool to top arrow on mobile devices? Or at least a custom css code?

Thank you.

Alex G.

Post count: 20685

Hi,

To enable the scroll to top on mobile try a code like this

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

Enter it in Theme panel->Custom CSS section and check the results.

Thanks

Post count: 3

Thank you. Now it appears on mobiles also.

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