How do I move the email sign up to the right and keep the footer links to the left?

Hi @signora ,

You can follow these steps:

  • Go to Online store => Themes => Edit Code,

  • Find file base.css and paste the code below to end of file

.footer__content-top.page-width {
  display: flex;
  justify-content: space-between;
}
.footer__blocks-wrapper.grid {
  flex: 1;
}

Hope our solution help you!