ngx-slick-carousel icon indicating copy to clipboard operation
ngx-slick-carousel copied to clipboard

Align slides to show

Open jhonantanErnane opened this issue 4 years ago • 4 comments

Is there a way to align items to the left instead of center inside the carousel? When the items in the array are less that slides to show, they stay centralized. I could not find any information about it.

jhonantanErnane avatar Dec 03 '19 18:12 jhonantanErnane

i have the same issue

Mohamed-Ata93 avatar Jan 13 '20 20:01 Mohamed-Ata93

Simple as: .slick-track { margin-left: 0; }

stankovicmilutin avatar Jun 14 '20 15:06 stankovicmilutin

i've solved with

    .slick-track {
        margin-left: 0 !important;
    }

    .slick-slide {
        width: auto !important;
    }

iamandreadompe avatar Sep 03 '20 08:09 iamandreadompe

i've solved with

    .slick-track {
        margin-left: 0 !important;
    }

    .slick-slide {
        width: auto !important;
    }

Is there a specific place that we should place this in? It seems like no matter the selector I am choosing the style just wont mount

ddavid-son avatar Jul 17 '22 11:07 ddavid-son