Is there a way to flip elements in the footer?

Right now the copyright text appears above the social icons but I’d like to switch that, so the social icons appear above the copyright text. Still centered though. Is this possible? Attached is a photo of what I’m referring to. Thanks.

Hi Greg,

Thanks for reaching out.
It seems that you are using the icon stack, which has a structure like this. I would recommend you to select the Integrity stack from Theme Options > Stack, which will resolve your problem. If you don’t want to change the stack but still want to achieve this, you need to add a few custom CSS code into the Theme Options > CSS.

footer .x-container
{
    display: flex;
    flex-direction: column;
    flex-direction: column-reverse;
}

Please remember that the above code will work if copied as it is and don’t conflict with any existing style.
Please note that the code provided serves only as a guide to help you get started custom coding on your own if there’s no option offered in our theme or the products we bundle.
We really do not provide support for custom codes that means we can’t fix it in case it conflicts with something on your site nor will we enhance it.

Thanks

1 Like

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