Topic summary
A user seeks to display footer text elements side-by-side on mobile devices for their Shopify store.
Two solutions provided:
-
JavaScript approach (Moeed): Add custom code to the
theme.liquidfile, placed above the</body>tag. This solution includes a screenshot showing the expected result. -
CSS approach (GTLOfficial): Modify
base.cssby adding CSS rules that:- Set footer grid items to
display: flexwithflex-flow: row - Apply
width: 50%andmargin-top: 0pxwith!importantflags - Add
1remgap between elements - Also includes a visual result screenshot
- Set footer grid items to
Status: The discussion remains open with no indication which solution the original poster selected or whether either resolved the issue. Both responses request feedback through likes/solution marking.
Hey @Jim_65
Follow these Steps:
-
Go to Online Store
-
Edit Code
-
Find theme.liquid file
-
Add the following code in the bottom of the file above tag
RESULT:
If I managed to help you then, don’t forget to Like it and Mark it as Solution!
Best Regards,
Moeed
Hello @Jim_65
Go to online store ---------> themes --------------> actions ------> edit code------->base.css
add this code at the end of the file.
.footer__blocks-wrapper.grid.grid--1-col.grid--2-col.grid--4-col-tablet.scroll-trigger.animate--slide-in {
display: flex;
flex-flow: row;
gap: 1rem;
}
.footer-block.grid__item.scroll-trigger.animate--slide-in {
width: 50% !important;
margin-top: 0px !important;
}
result
If this was helpful, hit the like button and accept the solution.
Thanks


