Currently, I am facing an issue with the footer section of the website I am working on. The problem lies in the order in which the elements are displayed. I would like the social icons to appear above the copyright symbol.
Take a look at the footer.
Here is the HTML:
<div id="footerbot">
<div class="container">
<div class="row">
<div class="col-md-6">
<h5 class="fbh">©2018 - Appo, All Right Reserved</h5>
</div>
<div class="col-md-6">
<a href="#"><img src="img/facebook.png" href="#"></a>
<a href="#"><img src="img/twitter.png" href="#"></a>
<a href="#"><img src="img/dribble.png" href="#"></a>
<a href="#"><img src="img/gplus.png" href="#"></a>
<a href="#"><img src="img/youtube.png" href="#"></a>
</div>
</div> <!-- end of row -->
</div>
CSS:
#footerbot {
background-color: rgba(34, 48, 71, 0.8);
}
#footerbot img {
display: block;
float: right;
top: 50%;
padding-top: 35px;
padding-left: 15px;
}
#footerbot h5 {
color: #00FFF0;
line-height: 100px;
}
I attempted to add the 'order-md-6' class to each div with col-md-6. However, it did not work as expected and disrupted the layout by centering both elements. Is achieving this possible in Bootstrap 4? Additionally, I am struggling to center these items, as shown in the image I uploaded. I have been trying to solve this for two hours now without any success. Any help would be greatly appreciated. Thank you.