Hi Pitak, thank you for your kind words.
Quote:
Phil, for the testimonial addon, when I click on the next page, is it possible to let the page scroll to the top so that visitors can read the next testimonials right away instead of manually scrolling up? Thanks. <3
|
In skin/reboot/modules/Testimonials/testimonials.tpl
Around line 90, before...
Insert...
Code:
$('div.pagination a').click(function() {
$('html, body').animate({ scrollTop: 350 }, 'fast');
});
$('select.perPage').click( function(e) {
e.preventDefault();
setTimeout( function() {
$('div.pagination a').click(function() {
$('html, body').animate({ scrollTop: 350 }, 'fast');
});
}, 250);
});