Can't get both mobile and desktop footer to align center.

Trying to align both mobile and desktop.

Before I started trouble shooting mobile was aligned perfectly

After I inserted this code in theme.liquid - my desktop version aligned center but my mobile stop aligning center:

.footer__content-top{ text-align: center; } .footer__content-top a.link.link--text.list-menu__item.list-menu__item--link { text-align: center; display: inline-block; }

I just want both to be aligned center. Any help?

Dawn

website link: theminoritynyc.com


desktop version

mobile version

Hi @minoritywetrust ,

Can you try updating your above css with below given

.footer__content-top{ text-align: center; } @media screen and (min-width:750px){ .footer__content-top a.link.link--text.list-menu__item.list-menu__item--link { text-align: center; display: inline-block; } }

And let me know if the issue still persists

Thank you kindly. :sign_of_the_horns:t5: