Call button mobile
<link href='http://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.4.0/css/font-awesome.min.css' rel='stylesheet'/>
<style>
.mobile-contact {
display: block;
position: fixed;
bottom: 0;
left: 0;
right: 0;
height: 35px;
z-index: 1000;
}
.mobile-contact .fa {
display: block;
color: #fff;
font-size: 20px;
text-align: center;
padding: 8px 0;
position: absolute;
}
.mobile-contact .fa-facebook {
left: 50%;
right: 0;
background: #3F51B5;
text-decoration: none;
}
.mobile-contact .fa-phone {
left: 0;
right: 50%;
background: #4CAF50;
text-decoration: none;
}
@media (min-width: 992px) {
.visible-mobile {
display: none !important
}
}
@media (max-width: 991px) {
.visible-mobile .search-tabs {
display: block !important
}
.hidden-mobile {
display: none !important
}
}
</style>
<div class="mobile-contact visible-mobile">
<a href="tel:0909090909" class="fa fa-phone"></a>
<a href="https://www.facebook.com/NguyenPhuongBlog" class="fa fa-facebook"></a>
</div>