Hi there,
Thanks for writing in.
You mean it should start hidden but will start displaying when the users start scrolling? Sure, please add this code to your global custom javascript.
jQuery( function($) {
$(window).scroll( function(){
if ( $(this).scrollTop() > 0) {
$('.x-scroll-top').toggleClass('in').attr('style', 'margin-bottom: 0 !important; opacity: 0.375 !important;');
}
} );
} );
As for styling, please add this CSS
.x-scroll-top {
right: 10px;
color: rgb(183, 152, 91) !important;
border: 1px solid rgb(183, 152, 91) !important;
border-radius: 0px !important;
}
Thanks!