• Resolved bernav

    (@bernav)


    Hi. We installed the plugin on the website we are developing. But it seems like its having conflict with our back to top / scroll to top button. is there a way we can fix this? Thank you..

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter bernav

    (@bernav)

    below is our code for the scroll to top:
    
    $(document).ready(function(){
    	var offset = 220;
        $(window).scroll(function() {
            if ($(this).scrollTop() > offset) {
                $('a#backtop').show();
            } else {
                $('a#backtop').hide();
            }
        });
    	
    	$('a#backtop').click(function(event) {
            event.preventDefault();
            $('html, body').animate({scrollTop: 0}, 500);
            return false;
        });
    });
    Plugin Contributor averta support

    (@averta_support)

    Hi,

    Thank you for choosing Master Slider.

    If it’s possible, please set up a sample page with your slider included and also your script. We need to check this in action.

    If there is anything we can do to resolve the issue, we will let you know but please keep in mind that currently, it’s not possible for us to adjust the JS functionality of the Master Slider based on the custom snippets or third-party plugins.

    Feel free to get in touch in case you need anything else.

    Best,

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Conflict with Scroll to Top’ is closed to new replies.