Hello,
Is it possible to align my menus so the spacing between “Information” and the Email signup looks better?
Link:https://vsai.store/
Pw: ponyplay
Dear regards
/Rasmus
Hello,
Is it possible to align my menus so the spacing between “Information” and the Email signup looks better?
Link:https://vsai.store/
Pw: ponyplay
Dear regards
/Rasmus
Step 1. Go to Admin → Online store → Theme > Edit code
Step 2. Find the file theme.liquid.
Step 3. Add this code above
Result
Hi @RasmusUG
Check this one.
From you Admin page, go to Online Store > Themes
Select the theme you want to edit
Under the Asset folder, open the main.css(base.css, style.css or theme.css)
Then place the code below at the very bottom of the file.
@media screen and (min-width: 750px) {
.grid--4-col-tablet .grid__item {
width: auto;
}
.footer__blocks-wrapper.grid.grid--1-col.grid--2-col.grid--4-col-tablet {
display: grid;
grid-template-columns: 1fr auto 1fr auto;
gap: 6rem;
}
}
And Save.
Result:
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!