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
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!