I have very few contents in footer and it is in single line. There are one thing I am trying to achieve
When I go for the mobile view say range from 320px to 480px, social media icons and text gets overlapped i want them in two lines when there is no place to fit in single line. The same happens for tablet screen.
here is my example code
.footer-section {
background: #e5e5e5;
}
p.text-muted {
margin-bottom: 0;
padding-top: 20px;
padding-bottom: 20px;
text-align: center;
}
.social-media-icons {
position: absolute;
right: 0;
top: 15px;
}
.fc-today-button {
display: none;
}
.copyright-footer-text {
font-family: 'ralewaymedium';
font-size: 12px;
color: #333333;
}
.social-media-section>a {
margin-right: 20px;
color: #465e8d;
}
.social-media-section>a:hover {
color: #e36a5c;
}
.footer-section {
position: relative;
}
.social-media-section {
position: absolute;
top: 0;
right: 0;
padding-top: 15px;
padding-bottom: 15px;
}
select.ui-datepicker-month>option.customOption:hover {
color: red;
}
.myClass {
color: #fff;
}
.tab-content {
min-height: 600px;
}
.no-del-msg {
font-family: 'ralewaymedium';
font-size: 14px;
font-style: italic;
}
.icon-desciption {
padding-right: 0;
padding-left: 0;
}
<div class='container'>
<h1>hi this is heading</h1>
</div>
<div class="container-fluid footer-section">
<footer class="footer">
<div class="footer-section col-xs-12">
<p class="text-muted copyright-footer-text">Copyright 2016 © PurpleChilli. All rights reserved.</p>
</div>
<div class="pull-right social-media-section">
<a href=""><i class="fa fa-2x fa-google"></i></a>
<a href=""><i class="fa fa-2x fa-twitter"></i></a>
<a href=""><i class="fa fa-2x fa-instagram"></i></a>
<a href=""><i class="fa fa-2x fa-linkedin"></i></a>
<a href=""><i class="fa fa-2x fa-pinterest"></i></a>
<a href=""><i class="fa fa-2x fa-youtube"></i></a>
<a href=""><i class="fa fa-2x fa-facebook"></i></a>
</div>
</footer>
</div>