i dont know if you figured it or not but i think you have to play with the
content-slider.php
in there there’s a css and i guess you can work in there ??
i’ll post about when i figure it out all
edit:
to make it fluid.
i made all the widths in percentage and heights to auto
<style>
#featured_slider {
float: left;
margin: 10px 0px;
position: relative;
background-color: #<?php $c_slider_bg = get_option('feat_bg'); if(!empty($c_slider_bg)) {echo $c_slider_bg;} else {echo "FFF";}?>;
width: 100%;
}
#featured_slider ul, #featured_slider ul li {
list-style: none !important;
border: none !important;
float: left;
margin: 10px;
width: 100%;
height: auto;
}
#featured_slider .img_right {
width: 100%;
height: auto;
height: auto;
margin-left: 20px;
}
#featured_slider .img_right img {
width: 48%;
height: auto;
border: 5px solid #CCC;
}
#featured_slider .content_left {
float: left;
color: #<?php $c_slider_text_color = get_option('text_color'); if(!empty($c_slider_text_color)) {echo $c_slider_text_color;} else {echo "333";}?>;
width: 48%;
}