Stack text links and social icons on mobile footer?

Hey guys. I could use some help with the mobile footer. I’d like to center the social icons under the text links if possible.

Site is toastcatering.com.

Hi @sc8tty,

Thanks for writing in. To achieve that, try adding this custom css.

@media(max-width:767px){
    .x-colophon.bottom .x-social-global {
        width: 100%;
        display: block;
        float: none;
    }
    .x-colophon.bottom .x-social-global a {
        float: none;    
    }
}

Hope it helps.

Perfect! Thank you.

You’re welcome :slight_smile:.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.