Would like to move the subscribe to email section in footer // taste theme

Hi!

I’ve been struggling moving the subscribe to our email section to be right next to the contact us box, instead of below it. Ideally the contact us section would be centered.

the website is:

https://goldstar3343.myshopify.com/

there is no password.

Thank you so much for your help and time!

1 Like

@heyitsphae

yes, please check your theme setting may be allow this or try this code

  1. Go to Online Store->Theme->Edit code
  2. Asset->/section-footer.css ->paste below code at the bottom of the file.
@media screen and (min-width: 750px) {
.footer-block--newsletter {
    position: absolute;
    right: 0;
    top: 0;
}
.footer__content-top {
    position: relative;
}
}
1 Like