How can I center text in Theme Motion?

Hello, friends. Theme Motion.
How to move Announcement text to the center. Thank you

Hello @Igor11

You can try this code: it will be helpful to you

Go to the Online Store->Theme->Edit code->Assets->theme.css>Add this code at the bottom.

.announcement__text {
    text-align: center !important;
}
1 Like

Thanks, it worked for me.

Hello @Igor11

Most welcome.

1 Like

Then maybe you know how to center the footer content? Thank you

Hello @Igor11

Could you please provide your store URL and, if it is password protected, please share the password so I can review it and provide a solution.

1 Like

Hello @Igor11

You can try this code: it will be helpful to you

Go to the Online Store->Theme->Edit code->Assets->theme.css>Add this code at the bottom.

.site-footer .page-width {
    max-width: 1300px;
    margin: 0 auto;
}
1 Like

I want to evenly distribute the contents of the footer sklema.com

added code but nothing changed

Hello @Igor11

You can try this code: it will be helpful to you

Go to the Online Store->Theme->Edit code->Assets->theme.css>Add this code at the bottom.

.footer__item--1494292485313 {
    width: 33.3%;
}
1 Like

I want to evenly distribute footer content on mobile. Now it looks like this.

Footer blocks moved to the left side of the page

and delete the previous code?

now like this

Hello @Igor11

You can try this code: it will be helpful to you

Go to the Online Store->Theme->Edit code->Assets->theme.css>Add this code at the bottom.

@media only screen and (max-width: 589px){
.footer__item--1494292485313 {
    width: 100% !important; 
}
.footer__newsletter-input {
    max-width: 450px !important;
}
}
1 Like

delete codes i uploaded earlier today?

Yes, you should delete the previous code and apply it to the one I provided.

1 Like

now like this. How to center text “YOUR SECURITY” and “2023 SKLEMA…”

Hello @Igor11

You can try this code: it will be helpful to you

Go to the Online Store->Theme->Edit code->Assets->theme.scss>Add this code at the bottom.

@media only screen and (max-width: 589px){
.footer__title {
    text-align: center !important;
}
.footer__copyright, .footer__powered_by {
    text-align: center !important;
}
}
1 Like

you are super man, thank you