I need to change the amount of time a slide is being shown in SJ Carousel. This is not the transition or fading time. I'm not talking about the time it takes to go from one slide to the next, but how much time the slides are shown.
How can I do this? I read similar forums and nothing helped. I did change this code in the CSS file in Joomla, as well as in the bootstrap.min file to be defined as 1 second instead of 0.6, but that only changes the transition time from one slide to the other...
carousel-inner > .item {
display: none;
position: relative;
-webkit-transition: 0.6s ease-in-out left;
-moz-transition: 0.6s ease-in-out left;
-o-transition: 0.6s ease-in-out left;
transition: 0.6s ease-in-out left;
}
Can anyone help me? Thank you!