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

Solved

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

minoritywetrust
Excursionist
18 0 6

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: 

 

<style>
.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;
}
</style>

---

 

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

Dawn

website link: theminoritynyc.com

 

Screenshot 2024-02-29 at 6.41.45 AM.pngdesktop version

 

Screenshot 2024-02-29 at 6.41.52 AM.png

mobile version

Accepted Solution (1)

JasmeetVT14313
Shopify Partner
292 63 77

This is an accepted solution.

Hi @minoritywetrust,

Can you try updating your above css with below given

<style>
.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;
}
}
</style>

And let me know if the issue still persists

- VTN Customer Dashboard enhances your customer's dashboard with advanced features, profile management, and order tracking. Free trial available.
- Feel free to contact me at jasmeet.kaur@vtnetzwelt.com

View solution in original post

Replies 2 (2)

JasmeetVT14313
Shopify Partner
292 63 77

This is an accepted solution.

Hi @minoritywetrust,

Can you try updating your above css with below given

<style>
.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;
}
}
</style>

And let me know if the issue still persists

- VTN Customer Dashboard enhances your customer's dashboard with advanced features, profile management, and order tracking. Free trial available.
- Feel free to contact me at jasmeet.kaur@vtnetzwelt.com
minoritywetrust
Excursionist
18 0 6

Thank you kindly. 🤘🏾