is it possibility if is in top, not view Top-logo same at "theme Epsilon" in "isDesktop or IsTablet"
and need to disable if isMobile
************************************
you send me this code:
1) into global.js add following:
$(window).on('scroll', function(){
if($(document).scrollTop() > 720) {
$('#scroll-to-top').fadeIn(200);
} else {
$('#scroll-to-top').fadeOut(200);
}
});
and
2) into style.css add:
#scroll-to-top {display:none;}
************************************
this code is ok for "isDesktop or IsTablet"
but im nedd desable if is isMobile
thanks