Hi @PapaSasha
ok. Try this code here:
<script>
jQuery(document).on("click", "#view-more", function(event) {
event.preventDefault();
jQuery('html, body').animate({
scrollTop: jQuery("#view-more-anchor").offset().top
}, 500);
});
</script>
You need to make two divs of course. One with the ID #view-more; and the other one with the ID #view-more-anchor;.
In your code you also did not consider this:
http://laytheme.com/documentation.html#custom-javascript
Best!
Marius