Hello
Assuming you are referring to the zoom effect on each slide image, Ttry adding the following to the Custom CSS field of your templates parameters (Extensions -> Templates -> [YourTemplateStyle] -> Custom CSS)....
div.layerslideshow .tns-slider img {
transform: scale(1);
transition: all 30s linear;
transition-delay: 0s;
transition-delay: .4s;
}
div.layerslideshow .tns-slide-active img {
transform: scale(1.6);
}
Ciaran