Hi!
I am having some trouble with the footer. I have been trying to replicate this site’s ( https://www.heroin-bikes.com ) sticky footer with the same mobile compatibility.
Right now I’m using a single column footer with the following code in the widget :
ENG – FR • <div class=”aux-item aux-item-social”><ul class=”social-icons standard “><li class=”twitter”><i class=”fa-twitter”></i><i class=”fa-twitter”></i><li class=”facebook”><i class=”fa-facebook”></i><i class=”fa-facebook”></i><li class=”instagram”><i class=”fa-instagram”></i><i class=”fa-instagram”></i><li class=”rss”><i class=”fa-rss”></i><i class=”fa-rss”></i></div> • legal mentions
And I’m using some additional css :
#footer {
padding: 10px 0 0;
background-position: bottom center;
position: fixed;
bottom: 0px;
height: 70px;
width: 100%!important;
padding: 0;
margin: 0;
width: 100%!important;
}
#footer, #footer p, #footer h3.spb-heading {
width: 100%!important;
text-align: center!important;
}
#footer-widgets ul.social-icons{
margin-top:-10px!important;
text-align: center!important;
}
@media screen and (max-width: 767px) {
#footer h3.spb-heading {
width: 100% !important;
text-align: center !important;
}
#footer-widgets .widget {
text-align: center !important;
}
}
The thing is I can’t get the social icons to align properly with the other elements. I’d like to get them all on the same line and have it stay the same on mobile.
Any help would be much appreciated 🙂