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?
![]()
Thank you.
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?
![]()
Thank you.
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;
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!
Thank you!