Fixed size of Flexslider

前端 未结 5 2222
误落风尘
误落风尘 2021-02-04 03:40

I\'m using Flexslider to pull product images of varying sizes from an API. I\'ve been throwing them into Flexslider\'s

    , but these varying image sizes don
5条回答
  •  没有蜡笔的小新
    2021-02-04 04:07

    Let's say you wanted a fixed size of 200px by 200px. Add these properties to the following selectors in the flexslider.css file and you should be good to go:

    .flexslider {
        width: 200px;
        height: 200px;
    }
    
    .flexslider .slides img {
        width: 200px;
        height: 200px;
    }
    

    Hope this helps!

提交回复
热议问题