Struggling to center my slider images while using bootstrap with jssor. Despite trying to zero out the margins in the code below, the images within the slider remain aligned to the left side of the container. Any suggestions on how I can properly center the images inside a bootstrap container?
<!-- topconent -->
<div class="container topcontent">
<div class="row">
<div class="col-lg-12 text-center">
<h1>This is my header</h1>
<div id="slider1_container"
style="position: relative; margin: 0px auto;">
<!-- Slides Container -->
<div u="slides" style="cursor: move; position: absolute; overflow: hidden;
margin 0px auto; width: 630px; height: 420px;">
<div><img u="image" src="img/mainslider/img1.jpg" /></div>
<div><img u="image" src="img/mainslider/img2.jpg" /></div>
</div>
</div>
<p class="lead">More info</p>
</div>
</div>
<!-- /.row -->
</div>
<!-- /.topcontent -->