Customizing the Carousel to centralize within Bootstrap framework

PhyllisA

New Member
I'm using Twitter's Bootstrap framework for the first time and I've managed quite well so far customizing it to my original design on the live website I'm currently developing.Have a problem with the carousel slider built into Bootstrap when I scale the browser windows width increasing and decreasing it the carousel image and contents shift around (be responsive although it's not a responsive website). Also everything is aligned to the left of the browser so when you increase the browser you will see what I mean.I would ideally like to be able to have the carousel centered to the page and the text content left aligned to the left of the logo.HTML for the Carousel:<div id="myCarousel" class="carousel slide"> <div class="carousel-inner"> <div class="item active"> <img src="http://stackoverflow.com/questions/14602734/img/slide-1.jpg" alt=""> <div class="container"> <div class="carousel-caption"> <h1>We don't just clean, we care</h1> <a class="btn btn-large btn-primary" href="http://stackoverflow.com/questions/14602734/#">Get a Quote</a> </div> </div> </div> <div class="item"> <img src="http://stackoverflow.com/questions/14602734/img/slide-1.jpg" alt=""> <div class="container"> <div class="carousel-caption"> <h1>We don't just clean, we care</h1> <a class="btn btn-large btn-primary" href="http://stackoverflow.com/questions/14602734/#">Get a Quote</a> </div> </div> </div> <div class="item"> <img src="http://stackoverflow.com/questions/14602734/img/slide-1.jpg" alt=""> <div class="container"> <div class="carousel-caption"> <h1>We don't just clean, we care</h1> <a class="btn btn-large btn-primary" href="http://stackoverflow.com/questions/14602734/#">Get a Quote</a> </div> </div> </div> </div> <a class="left carousel-control" href="http://stackoverflow.com/questions/14602734/#myCarousel" data-slide="prev">&lsaquo;</a> <a class="right carousel-control" href="http://stackoverflow.com/questions/14602734/#myCarousel" data-slide="next">&rsaquo;</a></div> <!--/.carousel -->Please can anyone help at all? Because whatever I try and edit in the CSS seems to break it?
 
Back
Top