RM 2.2 Decrease the speed of the carousel

Solution
In xfrm_widget_featured_resources, find:

Code:
<ul class="carousel-body carousel-body--show2" data-xf-init="carousel">

Change to:

Code:
<ul class="carousel-body carousel-body--show2" data-xf-init="carousel" data-pause="6000">

The 6000 is the speed in milliseconds (so that's 6 seconds; it defaults to 4). Adjust to suit your needs.
In xfrm_widget_featured_resources, find:

Code:
<ul class="carousel-body carousel-body--show2" data-xf-init="carousel">

Change to:

Code:
<ul class="carousel-body carousel-body--show2" data-xf-init="carousel" data-pause="6000">

The 6000 is the speed in milliseconds (so that's 6 seconds; it defaults to 4). Adjust to suit your needs.
 
Solution
Top Bottom