Hi Jahnavi,
if it doesn’t work for you, try to use a javascript snippet , then put the following code inside it:
$(document).ready(function(){
$('.elementToBeClickedClass').click(function(){
$('html, body').animate({
scrollTop: $(".elementToScrollToClass").offset().top
}, 1000)
})
});
elementToBeClickedClass : the class of the arrow or button that shows scroll to top
elementToScrollToClass : The class of the element you want to scroll to
Thanks,
Sufian.