I found some CSS from another thread that allows this to be possible.
@media (min-width: 992px) {
.flexslider .slides img {
height: 900px;
}
}
Just copy and paste into Theme Options> Advanced Settings> Custom CSS, and change the “900px” to whatever height you want.
Hey,
Because the slider is set up to crop the images based on the max height and max width this wouldn’t really work to change with css. You would need to change in the template of the slider.
templates/home/flex-slider.php
You can use a child theme: http://www.kadencethemes.com/child-themes/
then add in the folders and one file and finally add this in-between lines 44 and 45:
<?php $slideheight = 800; ?>
Kadence Themes
Thread Starter
jim89
(@jim89)
Thank you so much to everyone!!!