• Resolved rhyssa6

    (@rhyssa6)


    I have 20 images set up in carousel mode. Three images show at a time and when they slide it slides 2 images at a time. How do I make it only slide across one image at a time?

    The page I need help with: [log in to see the link]

Viewing 4 replies - 1 through 4 (of 4 total)
  • Hi,

    The purpose of carousel mode is to display multiple images at a time. The amount of slide displayed in a carousel will vary depending on your container and image width.

    You can disable the carousel mode and set your effect to “slide”.

    Thread Starter rhyssa6

    (@rhyssa6)

    If I put it in slide mode then only one image is shown at a time on the page. I want it to show 3 images at a time (which it does) but as the carousel moves it slides the image on the right across to the left position, thus pushing 2 images off the page at a time. I’d like the image on the right to slide to the centre so that only one image is pushed off the page at a time and every image has a turn being in the centre position.

    Please try and add the code below to your functions.php

    the $options[‘move’] will determine the number of steps the slide will move. In your case, it’s 1.

    function metaslider_flex_params($options, $slider_id, $settings) { 
    	$options['move'] = '1';
    	return $options;
    } add_filter('metaslider_flex_slider_parameters', 'metaslider_flex_params', 10, 3);

    Let us know how it goes.

    • This reply was modified 2 years, 9 months ago by James Huff.
    • This reply was modified 2 years, 9 months ago by Arreane.

    We haven’t heard back from you in a while, so I’m going to mark this as resolved – if you have any further questions, you can start a new thread.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Moving 2 images instead of 1’ is closed to new replies.