Sign up block

Good morning all! I am trying to get this sign up block to be left aligned on the mobile but seems out of place compared to everything else. The desktop columns are fine, just the mobile that needs aligning correctly. if there is a code i can add to the theme.liquid file please let me know!
the url is: https://rz591a-jx.myshopify.com/ and password is thuflo

Hi @kayodekevin

  1. Go to Online Store → Theme → Edit code.
  2. Open your theme.liquid file
  3. In theme.liquid, paste the below code before

If my reply is helpful, kindly click like and mark it as an accepted solution.
Thanks!

1 Like

Hi @kayodekevin
Add the below CSS code to section-footer.css file at the end

@media screen and (max-width: 749px) {
    .footer-block--newsletter {
        align-items: inherit !important;
    }
}

It will look like this

1 Like

Thank you! this worked just had to increase the -rem for it to be inline on the mobile but thank you!

1 Like

Thank you for your help!