Put the following code in your custom css Appearance -> theme options -> styling options -> custom css .flexslider { height: 347px; } .flexslider .slides li img { height: 345px; } Change the value according to your requirement This will solve your problem.
Hello, Paste this code in Custom CSS Appearance > Theme Option > Styling Option > Custom CSS Code: @media only screen and (max-width: 480px){ .flexslider .slides li img{ height:145px!important; } .flexslider { height: 147px!important; } } @media only screen and (max-width: 767px) and (min-width: 480px){ .flexslider .slides li img{ height:227px!important; } .flexslider { height: 229px!important; } } @media only screen and (max-width: 960px) and (min-width: 767px){ .flexslider .slides li img{ height:215px!important; } .flexslider { height: 217px!important; } } This will solve your issue.