Hi guys.
I tried to set up a menu in my footer section but the last page seems to be aligned out of the menu as you can see in the picture -
Tried to fix it using custom CSS and adding some code to base.css page without success.
Any clues?
Thank you!
2 Likes
Hi @segevpeleg . Welcome to the Shopify community!
Could you share the website URL? It would be much easier to debug and solve this. If it’s password-protected, a password would be needed too.
Hi @CafeDelMar , website URL: smilekit.co.il , Password: 123123
Thanks 
1 Like
Hi, in your base.css replace the code you added with this:
.footer-block__details-content li:last-child {
margin-right: 1.5rem;
}
@segevpeleg , here’s how to achieve that:
- Navigate to Sales Channels → Online Store → “Customize” button → Theme settings (Gear icon on the left sidebar) → Custom CSS
- Add the following code:
@media screen and (min-width: 750px) {
footer .footer-block__details-content li {
margin-right: 1.5rem !important;
}
}
- Save (right top corner)
- Hard refresh the storefront
If done correctly, the result should be like this:
1 Like