How to center the Copiyright in footer underneat the Menue

How to center the Copiyright in footer underneat the Menue?

The right menu in the footer should be centered above the copyright text.

Theme: Symmetry

URL: www.cotiereofficial.com

PW: test1234

Hi @marcelp , you can do that by adding this CSS code at the bottom of your styles.css file

.section-footer__row { display: block !important; text-align: center; }
.section-footer__lower-menu__list { text-align: center !important; }
1 Like

Hi @marcelp ,

Go to Assets > styles.css and paste this at the bottom of the file:

.section-footer__row-lower {
    flex-wrap: wrap !important;
    flex-direction: column-reverse !important;
    justify-content: center !important;
    align-items: center !important;
}

It will show like this:

Hope it helps!

1 Like