Hi,
need some help my footer menu overlaps and you can’t see the navigation. My site is NEWJRSY.com
A user reports footer menu navigation items overlapping and becoming unreadable on their website (NEWJRSY.co).
Proposed Solutions:
Two community members offered CSS-based fixes:
Solution 1: Add custom CSS targeting mobile screens (max-width: 767px) to remove bottom margins from footer list items. Code should be inserted before the </body> tag in theme.liquid.
Solution 2: Add CSS to adjust padding for both desktop and mobile views. Targets .site-footer, .no-bullets.site-footer__linklist, and page width containers. Code should be added to the theme’s CSS file (theme.css, styles.css, or base.css).
Both solutions involve editing theme files through Shopify admin → Online Store → Themes → Edit code.
Status: The issue remains unresolved as the original poster has not confirmed whether either solution worked. Images were shared showing expected results but appear corrupted in the thread.
Hello,
Please add the below code above in theme.liquid
online store >> edit code >> theme.liquid
@media only screen and (max-width: 767px){ footer.site-footer .site-footer__linklist li{ margin-bottom: 0!important; } }after added the given code looks like this.
If our solution is helpful for you then Please like the post and tap on accepted.
If you want to discuss any further information then please contact us on our whatsapp.
We will always here for your help.
Thankyou ![]()
Hi @Luxurymrkt ,
I understand that you want to fix the double words.
Try this.
ul.no-bullets.site-footer__linklist {
line-height: 2px;
}
.site-footer {
padding-top: 100px;
padding-bottom: 30px;
}
@media only screen and (max-width: 768px) {
.page-full, .page-width {
padding-top: 80px;
}
}
Result:
Desktop:
Mobile.
I hope it help.