Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author weblizar

    (@weblizar)

    Can you share me some screenshot for it to make easiest understanding for this issue.

    Thanks

    Thread Starter josiahrooney

    (@josiahrooney)

    Hi, I was able to fix the issue using jQuery. At first any attempts I made to fix it wouldn’t work since if I used hover(), your function would override mine. The solution was causing my function to delay 100ms on hover.

    $('.page-id-37 img').hover(function(){
    
    	var left = $(this).offset().left + 10;
    	setTimeout(function() {
    		$('body > a').css('left',left);
    	}, 100);
    
    });

    This solution works for me but if you try using MasterSlider with it, you may face the same issue I had.

    Plugin Author weblizar

    (@weblizar)

    Hello josiahrooney,

    Can you tell me that above function is created by you or it’s a part of MasterSlider.

    Thanks

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Use this plugin with Master Slider’ is closed to new replies.