How do I move the email submission over to the left in the footer?

Hey, I want to move the place in the footer where users can submit their email over to the left more closer to the social media links.

https://timelessracingco.com/

Hi @timelessracing

Please add this code to Custom CSS in Online Store > Themes > Customize > Theme settings

@media (min-width: 66.75em) {
#footer .columns:has(.widget--social) {
max-width: 9.66%;
}
}

Hi @timelessracing

You can try to follow this step
Step 1: Go to Edit code
Step 2: Find file app.css and add this code at the end of the file

@media (min-width: 990px) {
.widget.widget--signup {
    right: 12% !important;
    position: relative !important;
}
}

Result:

Best,

Liz

Hi @timelessracing

I hope you are well. You can follow our instructions below:
1/ Shopify admin > Online store > Edit code: https://prnt.sc/M4p-gua99Uf4
2/ Search for “theme.liquid” file: https://prnt.sc/b6xveIKe-Rh2
3/ Open the file and search for tag and add the following code above tag: https://prnt.sc/KWtKYyZkDtYJ

Here is the code for Step 3:

{% style %}
@media screen and (min-width: 990px) {
.widget.widget--signup {
    right: 12% !important;
    position: relative !important;
}
}
{% endstyle %}

Please let me know if it works. Thank you!

Best,
Daisy - Avada Support Team.

Hi @timelessracing

  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!