[Support request] Center text in the footer

Home Forums Support [Support request] Center text in the footer

Home Forums Support Center text in the footer

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1151803
    Ignat

    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?

    #1151888
    David
    Staff
    Customer Support

    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;
        }
    }
    #1152440
    Ignat

    Thank you, fixed the problem!

    #1152684
    David
    Staff
    Customer Support

    You’re welcome

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.