Social icons float right in footer

I am trying to use the social icons in the footer on the right side. How can I do this and keep them horizontally aligned with the text on the left?

Hi there,

Would you mind providing the URL of the site in question so that we can provide some suggestion?

Thank you.

http://162.241.173.56/

Hello @kstidham,

Thanks for sharing URL.

You can add following CSS under X > Theme Options > CSS:

.x-colophon.bottom .x-colophon-content {
    width: 50%;
    float: left;
    margin-bottom: 0;
}

.x-colophon.bottom .x-social-global {
    width: 50%;
    float: right;
}

.x-colophon.bottom .x-colophon-content p {
    padding-top: 0 !important;
}

footer.x-colophon.bottom .x-container {
    display: flex;
}

Thanks.

Worked wonderfully! Thank you.