Hi guys,
I need to fix the overlaping of the footer menu lables in Mobile View only. Before it was great, but I thing because of a global code given, it got affected.
Thank you,
A user is experiencing overlapping footer menu labels in mobile view on their Shopify store, which occurred after implementing a global code change. The issue was previously working correctly.
Proposed Solutions:
Two community members offered CSS fixes:
theme.liquid file at the endassets/base.css file, specifically targeting footer list items with a media query for screens up to 425px width, applying 43px right paddingBoth solutions involve adding CSS code to theme files to adjust spacing/padding for mobile viewports. The discussion remains open with no confirmation of which solution resolved the issue.
Hi guys,
I need to fix the overlaping of the footer menu lables in Mobile View only. Before it was great, but I thing because of a global code given, it got affected.
Thank you,
step 01:
step 02:
this idea helps you
Hallo @Alliance
You can add code by following these steps to change
paste below code at bottom(base.css)
@media only screen and (max-width: 425px) {
li.site-footer__linklist-item {
padding-right: 43px !important;
}
}
If you require any further information, feel free to contact me.
Best regards,