Thanks again. Well I heard back from support and it's a js function that needs to be changed is the code below. Since I bought the plugin I am hoping to get use out of it and tried to fix the original again. It has some really cool out of the box examples you can tweak (if I can freaking figure out how to manage the js correctly). I'm trying what they are saying but must be doing something wrong. I did get the animation to drop below on mobile. I understand what you are saying though about not seeing it animate. If I can't get this working I have yours to fall back on. My revised so far: White Paper This is their response on my ticket and the code they are saying to place the functions in. If I understood you correctly, I believe the best approach to this would be to set the slider to fullwidth layout (disable fit to screen width option) and insert it to the parent element where you want it. This way it will always take up its parent element's width, so you can contain it. Please open the documentation from the plugin's package and navigate to the /documentation.html#slider-options part. You will find the layout settings you need there and also where to change/add them. <script type="text/javascript"> $(document).ready(function() { $('#slider').layerSlider({ sliderVersion: '6.2.2', type: 'fullsize', maxRatio: 1, skin: 'v6', sliderFadeInDuration: 450, showCircleTimer: false, skinsPath: '../../layerslider/skins/', height: 900 }); }); </script> The documentation is here and it tells you different js functions that can be used. LayerSlider documentation
... View more