I need to add a footer to my website, but when I do, it causes the content to overflow on the x-axis. Removing the 15px margins in the .row class is not an option for me because that would require me to redo all of the CSS code.
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"></script>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" rel="stylesheet"/>
<footer style="margin-top:20px;background-color:lightgrey">
<div class="container-fluid" style="max-width:100%; margin:0px">
<div class="row" style="margin:0px;width:100%">
<div class="col-8" style="padding-bottom:10px !important; padding:40px">
<h4 style="margin-top: 10px">About Us</h4>
<p class="text-muted" style="margin-top:7px">
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum placerat malesuada leo. Vestibulum rutrum erat non diam feugiat pulvinar.
Nam sit amet aliquam nibh. Vestibulum sed consequat elit. Ut sodales justo sit amet iaculis venenatis. Curabitur fermentum magna id nunc ullamcorper consectetur.
Cras quis odio quis elit aliquet vulputate in nec nulla. Donec placerat bibendum ligula eget fringilla. Quisque sem ligula, sodales at est vitae, consectetur tempor justo.
</p>
</div>
<div class="col-2" style="padding-bottom:10px !important;padding:40px">
<h4 style="margin-top: 10px">Quick Links</h4>
<li style="list-style-type: none;">
<a href="/upload" style="margin-bottom:10px">Upload</a>
</li>
<li style="list-style-type: none;">
<a href="/profile/{{ current_user.user_url_id }}">My Profile</a>
</li>
<li style="list-style-type: none;">
<a href="/">Home</a>
</li>
</div>
<div class="col-2" style="padding-bottom:10px !important;padding:40px; padding-left: 0px !important">
<h4 style="margin-top: 10px">Irrelevant Links</h4>
<li style="list-style-type: none;">
<a href="/terms">Terms and Conditions</a>
</li>
</div>
</div>
</div>
<div class="container-fluid" style="width:100%">
<div class="row" style="width:100%;background-color:lightgrey">
<div class="col-12" style="padding-top:0px !important;padding-bottom: 0px !important;padding:40px">
<hr>
<p>© 2019 All Rights Reserved by Our Website</p>
</div>
</div>
</div>
</footer>