Buy me a coffee

How to add a scroll button to bottom of Carousel

To add a scroll button to bottom of Carousel, like this

How To Add A Scroll Button To Bottom Of Carousel 1 Min

You can do these
#1. First, find Carousel Section ID.
In my example, it is:

section[data-section-id="660bdc1764321203a92b387e"]

#2. Use this code to Page Header Injection

<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
<script>
  $('<div class="down-arrow"></div>').insertAfter('section[data-section-id="660bdc1764321203a92b387e"] .user-items-list-carousel__slides');
$('.down-arrow').on('click', function() {
    $('html, body').animate({
        scrollTop: $('.user-items-list-carousel__slides').next().offset().top
    }, 500); 
});
</script>
<style>
  .down-arrow {
    width: 50px;
    height: 50px;
    background-color: gray;
    border-radius: 50%;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.down-arrow::before {
    content: '\e009';
    font-family: 'squarespace-ui-font';
    font-size: 20px;
    color: white;
}

</style>

How To Add A Scroll Button To Bottom Of Carousel 2 Min

#3. To change arrow color/circle background, change these code

How To Add A Scroll Button To Bottom Of Carousel 3 Min