Essential Grid Pagination arrows doesn´t scroll to top

Hello there,

we build our Blog site with the essential grid. Above there are arrows (blue) and numbers (red) for navigation. If we click on the numbers it works fine and scrolls to the top of the next blog site. But if we click on the arrows it doesn´t scroll to top. How can i fix that?

Hi,

Can you provide us the exact url of the page where we can see the issue.

I checked the demo and it should not scroll, your page content will adjust accordingly with regards to your grid contents.

Thanks

Hi Michael,

Please add this custom JS under Theme Options > JS:

jQuery(document).ready(function($) {
	$(".esg-navigationbutton.esg-left, .esg-navigationbutton.esg-right").click(function() {
	    $('html, body').animate({
	        scrollTop: $("#esg-grid-17-1-wrap").offset().top
	    }, 1000);
	});
});

Hope that helps and thank you for understanding.

THANK U GUYS! Excellent!

You’re welcome, Michael.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.