Reply To: Responsiveness for Ale-Slider

#1000

OwlThemes
Keymaster

Hello Max.

1) We will update the theme soon. You should update ale slider plugin to the version 1.4.1. It will add the possibility to change slider settings via filters. For changing the speed you can add this code to your child’s theme function.php file.

add_filter('ale_slider_settings', function ($args){
   $args['autoplaySpeed'] = 500; //autoplay speed in ms
   return $args;
});

2) Images in the slider are set as backgrounds. They fit all available space of the slide. So to reduce their size you can reduce some paddings around the slide. For example, you can add this CSS code.

@media only screen and (max-width: 767px)  {
    body.home .info_block .text_block { padding: 30px 0; }
}

Best regards.