I can only provide you a general solution for you request, because the customization issue is not included in the support.
1. You need to add the following HTML into footer.php
<div id="mobile_socials"><?php echo van_social();?></div>
2. Add the following CSS into custom.css file or “Oldcar options > Custom code > CSS code”
#mobile_socials{
width:100%;
height:40px;
background:#da584f;
position:fixed;
left:0;
bottom:0;
display:none;
}
@media all and (max-width: 640px){
#mobile_socials{display:block;}
}