I want my footer to look like this https://i.stack.imgur.com/u1bOO.png
Currently, it looks like this : https://i.stack.imgur.com/BLduc.png
My image is not fixed and I want "Thanks our friends at" to be near the image middle, like in the example above.
Another problem is when I resize the page, all the text from the footer exits from the div
.
Code:
#footer {
background-color: #3f4951;
display:block;
margin:0 auto;
width:100%;
}
section {
display:block;
}
.row {
margin:0 auto;
width:100%;
}
.footer-top {
padding: 37px 0 38px;
}
.column {
padding-left: 20px;
padding-right: 20px;
}
.footer-top nav {
float: left;
margin: 0;
max-width: 60%;
text-align: left;
}
.footer-top nav a {
color:#a9abad;
}
.footer-top .thanks {
margin-left:200px;
float:left;
max-width: 35%;
width: 250px;
}
.thankstext {
color:#a9abad;
font-size: 16px;
}
.footer-top * {
color:#a9abad;
}
.footimage {
}
<div id="footer">
<section class="footer-top">
<div class="row">
<div class="column small-12">
<nav>
<a>New or Existing Home Installation |</a>
<a href="#">Flushing |</a>
<a href="#">Serivicing |</a>
<a href="#">Service3 |</a>
<a href="#">Service4 |</a>
<a>All Services will be listed here.</a>
</nav>
<div class="thanks">
<div class="thankstext">Thanks our friends at</div>
<img class="footimage" src="footimage.png">
</div>
</div>
</div>
</section>
</div>