hello, a while ago i added some code so that my footer text would be centrally aligned, however, i’ve now decided i want it left aligned, so i have found the code i used a while ago and removed it. All of my text is now aligned to the left, except for my menus (cant remember if i used separate coding to centre align the menus). I would like to align my menus to the left, like the text
website is www.antico-abito.com , theme is dawn
1 Like
Hi @ads18922 ,
Go to Online Store, then Theme, and select Edit Code.
Search for base.css/theme.css/style.css/main.css/custom.css file Add the provided code at the end of the file.
@media only screen and (max-width: 749px) {
.footer-block__heading.inline-richtext {
text-align: center !important;
}
}
sorry, i just realised i did the title wrong. I want to align the menus to the left, not the centre. Thanks
Hi @ads18922
TRy 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 (max-width: 769px) {
.footer__blocks-wrapper .footer-block__details-content .list-menu__item--link {
justify-content: left !important;
}
}
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!
Welcome! Would you mind hitting ‘like’ as well? Thanks!