Can someone please provide a code to center all of my footer links on mobile version? Thanks!!
Topic summary
A user seeks CSS code to center footer links on mobile devices in Shopify’s Dawn theme.
Solution Provided:
Another participant shares CSS code targeting footer link elements:
- Uses
justify-content: centerproperty - Targets class selectors:
.link.link--text.list-menu__item
Status: The discussion appears resolved with a direct code solution offered. The CSS snippet should be added to the theme’s custom CSS section to achieve centered footer links on mobile viewports.
Hello ,
The following code will do the job!
a.link.link–text.list-menu__item.list-menu__item–link {
justify-content: center;
}
Terence Keane
Best Regards,
