Hello,
I would like to know, how can I make transition speed slower for the slider.
I want to make the slider fluent.
Thank you.
Shiki
Thank you Josue,
I don’t know exactly where to write the codes.
Can you tell me, please?
Shiki
Hi,
Can you create me an administrator account? post it here as a private reply.
Regards,
Josue
Hey!
Try adding this code to the Quick CSS:
.avia-slideshow-controls {
display: none;
}
Cheers!
Josue
Thank you for the code. It worked.
I need one more cord to stop at the last picture.
Hi!
Open js/shortcodes.js and look for line 3816:
if( this.isAnimating || this.itemsCount < 2 )
{
return false;
}
Replace it with:
if( this.isAnimating || this.itemsCount < 2 )
{
return false;
}
if( dir === 'next' && this.current >= this.itemsCount - 1 )
{
this._stopSlideshow();
return false;
}
Best regards,
Josue