Site logo

Archived topic

Center text in the footer

3 replies · Started by Ignat on February 1, 2020

Viewing posts 1–4 of 4

How can I can center the facebook disclaimer text in my footer. I have 3 different types of texts in my footer. One copyright on the left and on the right is an address widget. I want to center the facebook disclaimer in-between the two texts. How can I do that?

Hi there,

you can try this CSS - you will need to swap the order of the 2 widgets so the FB disclaimer comes first:

@media (min-width: 768px) {
    .inside-site-info, .footer-bar {
        display: flex;
    }
    .copyright-bar {
        order: -1;
    }
    
    .footer-bar {
        flex: 1;
    }
    
    .footer-bar aside:first-child {
        margin: auto;
    }
}

Thank you, fixed the problem!

You're welcome

This archived topic is closed to new replies.