View Single Post
  #786  
Old 12-30-2014, 05:14 AM
 
PhilJ PhilJ is offline
 

X-Guru
  
Join Date: Nov 2002
Posts: 4,094
 

Default Re: X-Cart - reBOOT - Responsive Template

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...

Code:
}); </script>

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); });
__________________
xcartmods.co.uk
Reply With Quote