Is there a different solution to this problem that hasn't been mentioned in the other posts? I've tried all the top solutions from those posts, but my issue still remains.
In particular, the "example" code and "Stock" bootstrap carousel appear to be adding margins to the images, causing them to be smaller than the container and not aligning with the other elements on the page.
Here is the suggested code that works but has stubborn margins that I can't easily remove:
<div class="container" style="margin-top:40px" >
<div class="row" >
<div class="col-sm-12" >
<div id="carousel-msa" class="carousel slide" data-ride="carousel">
<!-- Indicators -->
... carousel code...
I can override it using additional "style" attributes, but this causes the image to lose its responsiveness - which is crucial for me.
<div id="carousel-msa" class="carousel slide" data-ride="carousel" style="margin-left:-15px; width:1200px">
When viewing the JS Fiddle, you'll notice that the image is horizontally compressed and doesn't align properly with the other elements.
https://jsfiddle.net/Le16u319/1/
I have already explored the following posts, but unfortunately, their solutions haven't resolved my issue:
Bootstrap Carousel image doesn't align properly
Twitter Bootstrap: Have carousel images full width and height
Bootstrap Carousel image doesn't align properly
Any assistance would be greatly appreciated.