Hi,
Regarding the slider, go to the theme folder and open the file "lib/functions/slider.php". In line #533 you will find this code:
fadeInSpeed: '<?php echo mysite_get_setting( 'slider_fade_speed' ); ?>',
Replace it with:
fadeInSpeed: 500,
You can replace the value that I wrote with your own one. It's expressed in milliseconds.
About Galleria, go to the file "lib/shortcodes/19-galleria.php". In line #176 you will find this code:
jQuery("#' . $galleria_id . '").galleria({
autoplay: ' . $speed . ',' . $lightbox . '
thumbCrop: true,
image_crop: ' . $image_crop . ',
show_counter: ' . $show_counter . ',
show_imagenav: ' . $show_imagenav . ',
pause_on_interaction: ' . $pause_on_interaction . ',
transition: "' . $transition . '"
});
Replace it with:
jQuery("#' . $galleria_id . '").galleria({
autoplay: ' . $speed . ',' . $lightbox . '
thumbCrop: true,
image_crop: ' . $image_crop . ',
show_counter: ' . $show_counter . ',
show_imagenav: ' . $show_imagenav . ',
pause_on_interaction: ' . $pause_on_interaction . ',
transition: "' . $transition . '",
transitionSpeed: 500
});
As in the slider code, the duration of the transition is expressed in milliseconds.