HI,
on desktop I’d like to make the menu footer closer together theres to much space between the menus
my site is https://luxurymrkt.com/
A user seeks to reduce excessive spacing between footer menu columns on desktop view.
A solution is provided involving custom CSS:
width: 10% !important to specific footer item classesThe response includes a screenshot showing the expected result with tighter menu spacing. The solution appears to use targeted class selectors to override the default footer column widths.
HI,
on desktop I’d like to make the menu footer closer together theres to much space between the menus
my site is https://luxurymrkt.com/
Hi @Luxurymrkt
check this one.
From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
Find the theme that you want to edit and click on “Actions” and then “Edit code”.
In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
@media only screen and (min-width: 960px) {
.footer__item--6007c949-626c-4b28-a10a-097504bc6a01, .footer__item--c4ad4e59-81c8-4699-86e7-c33658bc0281, .footer__item--1494301487049 {
width: 10% !important;
}
}
And Save.
Result:
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!