I have a problem. I am trying to make the following footer:
Here are the specification that I am trying to get:
- The red bar of the footer is full width of the screen
- The content of the whole page is in a page wrapper (container)
- All the content of the footer is inside the page wrapper
- The content inside the red bar is aligned to the right side of the page wrapper
Now I am pretty far because of all your help, but I only have 1 problem left:
- The content of the red bar is aligned in the center, but when I try to align it to the right, it gets aligned to the full right and not the right side of the page wrapper
Here is my updated code now:
body {
float: center;
justify-content: center;
display: flex;
}
.container {
width: 100%;
max-width: 1440px;
background-color: #0000FF;
height: 500px;
}
.footer {
position: absolute;
width: 100%;
left: 0px;
right: 0px;
}
.footer-red-bar {
position: relative;
background: #d81e05;
height: 120px;
display: flex;
align-items: center;
justify-content: center;
}
.footer-red-bar-content {
width: 1440px;
float: center;
align-items: center;
display: flex;
justify-content: right;
}
.footer-socialmedia-helper {
display: inline-block;
height: 100%;
vertical-align: middle;
}
.footer-socialmedia-frame {
border-radius: 7px;
width: 40px;
height: 40px;
background-color: #FFFFFF;
margin: 5px;
}
.footer-socialmedia-icon {
position: relative;
width: 70%;
vertical-align: middle;
}
.footer-red-bar-phonenumber {
color: #FFFFFF;
font-family: Verdana;
font-size: 20px;
display: flex;
}
<div class="container">
<footer class="footer">
<div class="footer-red-bar">
<div class="footer-red-bar-content">
<div class="footer-socialmedia-frame">
<span class="footer-socialmedia-helper"></span>
<img class="footer-socialmedia-icon" src="images/SocialMedia_twitter.png" />
</div>
<div class="footer-socialmedia-frame">
<span class="footer-socialmedia-helper"></span>
<img class="footer-socialmedia-icon" src="images/SocialMedia_twitter.png" />
</div>
<div class="footer-socialmedia-frame">
<span class="footer-socialmedia-helper"></span>
<img class="footer-socialmedia-icon" src="images/SocialMedia_twitter.png" />
</div>
<div class="footer-socialmedia-frame">
<span class="footer-socialmedia-helper"></span>
<img class="footer-socialmedia-icon" src="images/SocialMedia_twitter.png" />
</div>
<div class="footer-red-bar-phonenumber">
<p> Bel nu ons contact center </br> <b>023 751 06 06</b> </p>
</div>
</div>
</div>
</footer>
</div>
How can I get what I want?