How to center supporting menu text (footer?) on mobile (broadcast theme)

Hello,

The text for the supporting menu (below the the footer?) at the bottom is centering on desktop but not mobile.

Could you please help?

TimTakeTwo_1-1704138565457.png

https://taketwojewelry.com/

Thank you.

1 Like

Hi @TimTakeTwo using a custom-css setting override the flex rule in theme.css

https://help.shopify.com/en/manual/online-store/themes/theme-structure/extend/add-css

@media only screen and (max-width: 749px) {
 .supporting-menu__copyright {
  justify-content: center;
 }
}

the rule may need an !important declaration: justify-content: center !important;

1 Like

Hi @TimTakeTwo

Check this one.

From your Shopify admin dashboard, click on “Online Store” and then “Themes”.

Find the theme that you want to edit and click on “Actions” and then “Edit code”.

In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:

@media only screen and (max-width: 749px){
.supporting-menu__copyright {
    justify-content: center !important;
}
}

And Save.

Result:

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!

1 Like

Thank you!