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
PW: test1234
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
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; }
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!