Home Forums Theme support WP tables not responsive in Marea theme Reply To: WP tables not responsive in Marea theme

Ok, found a solution for the testimonials slider. Please go to WP admin -> Appearance -> Theme Options -> General -> Extra Javascript content and add this javascript code:

jQuery(window).on( 'load resize' , function() {
if(jQuery(window).width()<1050) {
jQuery('.caroufredsel_wrapper').each(function(){
var liindex=jQuery(this).find('ul li').size();
jQuery(this).outerWidth(jQuery(this).parent().width()); 
jQuery(this).find('ul li').outerWidth(jQuery(this).parent().width()); 
});
}
});