Search code examples
htmlcssmarginpadding

Bootstrap - Can not remove the right margin


I have an issue on http://kovaneruze.cz. There is a right margin/padding on the page, here is the image:

Image 1

I have a padding: 0px property on container-fluid div, so the image and items sticks right to the sides of the page. If I remove it, tha margin disappears, but the content is not right to the side. Here are the images:

Image 2

Image 3

Thank you for your help!


Solution

  • add padding left and right 0px to col-md-12

    <div class="row" style="padding: 0px;">
            <div class="col-md-12 margin-0 wow fadeIn" style="visibility: visible; animation-name: fadeIn;padding-left:0px;padding-right:0px;">
                <img src="http://kovaneruze.cz/images/ruze1.jpg" width="100%">
            </div>
        </div>