Struggling with adapting to different screen sizes, especially with Bootstrap.
Below are the images for reference: https://i.stack.imgur.com/AlCjA.png
https://i.stack.imgur.com/FT2mU.png
Sass source code snippet:
body
background: $main-background
margin: 0
width: 100%
height: 100%
.footer
position: absolute
color: white
font-family: Arial
width: 100%
height: 100%
background-color: $plok-orange
background-repeat: no-repeat
background-size: 100%
background-position: 50% 50%
@media screen and (max-width: 1170px)
min-width: 960px
.footer
width: 960px
.footer-left
margin-top: $margin-top-footer
float: left
margin-left: 20px
.footer-left h1
color: $plok-black
font-size: 30px
font-family: Helvetica
font-weight: lighter
.footer-right
margin-top: $margin-negative-footer
float: right
margin-left: 200px
.footer-right h1
color: $plok-black
font-size: 30px
font-family: $font-stack
font-weight: lighter
HTML Source Code:
<div class="jumbotron">
<h1 class="display-4">..........</h1>
<p class="lead">........</p>
<hr class="my-4">
<p>..........</p>
<a class="btn btn-primary btn-lg" href="#" role="button">Learn more</a>
</div>
<div class="footer">
<div class="footer-left">
<h1>Preview</h1>
<div class="row">
<div class="col-md-2">
<img src="images/plokster-art-1.jpg" alt="..." class="img-thumbnail">
</div>
<div class="col-md-2">
<img src="images/plokster-art-2.jpg" alt="..." class="img-thumbnail">
</div>
<div class="col-md-2">
<img src="images/plokster-art-3.jpg" alt="..." class="img-thumbnail">
</div>
<div class="footer-right">
<h1>Contact</h1>
</div>
</form>
</div>
</div>
</div>
Despite attempting a variety of max-width/min-width adjustments, the content still doesn't fit my original screen size. Using SASS for styling.`