Looking for some help with a content slider on my website at this link: . I want to make it responsive so that it adjusts to 100% width.
I managed to make it responsive by tweaking some code in the developer tools, but now I'm stuck. The bottom two percentages seem to be controlled by a JavaScript snippet:
<script type="text/javascript">
$(document).ready(function() {
$.noConflict();
jQuery('#services-example-1').services(
{
width:1144,
height:300,
slideAmount:6,
slideSpacing:30,
touchenabled:"on",
mouseWheel:"on",
hoverAlpha:"off",
slideshow:6000,
hovereffect:"on",
callBack:function() { }
});
});
</script>
Any suggestions on how I can convert the "width: 1144" into a percentage value?
Or do you have any other ideas on how to make this slider responsive? All input is appreciated! Thanks!