Align footer menu l Dawn Theme

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

2 Likes
  • Here is the solution for you @RasmusUG
  • Please follow these steps:

  • Then find the theme.liquid file.
  • Then add the following code at the before tag and press ‘Save’ to save it.

  • Here is the result you will achieve:

  • Please press ‘Like’ and mark it as ‘Solution’ if you find it helpful. Thank you.

@RasmusUG ,

Step 1. Go to Admin → Online store → Theme > Edit code

Step 2. Find the file theme.liquid.

Step 3. Add this code above


Result

1 Like

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!

1 Like