Swiper Slider Configuration
John Morris wrote:
Please see screen shot attached. That image is actually about 400px tall but it's rendering around 100px tall.
Any suggestions are greatly appreciated, thank you!
Hello John and Happy New year.
You have some CSS setting the min-height of a swiper slide. I guess this is build-in.
Copy to clipboard
#swiper-container1 .swiper-slide { font-size: 16px; color: ; min-height: 100px; text-align: center; width: 100%; overflow: hidden; }
Try to add in your Tiki custom CSS field (look&feel, customization panel) something like this
Copy to clipboard
#swiper-container1 .swiper-slide { min-height: 400px !important; }
You can change the "400px" for another value of course.
Good luck !