Adjusting the position of Dawn theme footer

Hi would like to ask is it possible to change the positioning of my dawn theme footer from
This:

To this:

here’s my website link https://dissy-co.myshopify.com/?_ab=0&_fd=0&_sc=1

password: cheolt

1 Like

Hello There,

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find Asset >base.css and paste this at the bottom of the file:
.footer-block--newsletter {
width: 50%;
margin-top: 0;
}
.footer__blocks-wrapper {
width: 50%;
}
.footer__content-top.page-width {
display: flex;
}

Hello @KelvinLeow ,

It’s GemPages support team and glad to support you today.

I would like to give you the recommendation to support you so kindly follow the steps below:

  1. Go to Online Store > Theme > Edit code of your current theme

  1. Open your theme.liquid theme file

  2. Paste the below code before


For example,

If you require any further information, feel free to contact me.

Best regards,
GemPages Support Team

Hi @KelvinLeow

Please follow these steps:

Navigate to Online Store > Themes > Edit code. Then find the file “base.css”, scroll down to the bottom and add these codes:

.footer .footer__content-top {
    display: flex!important;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

Find the file “section-footer.css”, scroll down to the bottom and add these codes

.footer-block--newsletter {
   margin-top: 0px!important
}

I hope that it works for you.

@GemPages Sorry for the trouble again, what if i want to make it in the middle instead?

Moving the social media icons to the middle of the footer instead of right side of the footer.

Hello @KelvinLeow ,

Let’s try adding this code before to replace my old code:


Best regards,
GemPages Support Team