Search code examples
reactjsreact-multi-carousel

Buttons outside of carousel elements [react-multi-carousel]


Is it possible to make the arrows/buttons on the right and left sides be outside of the carousel items?

Links to the libarary:

enter image description here


Solution

  • You can always add css to the arrows

    By default, left arrow has:

    left: calc(4% + 1px);
    

    and right arrow has:

    right: calc(4% + 1px);
    

    If you have space on the sides of carousel you can change that css.