How to align Email Signup to the left (Dawn Theme)

I’m having trouble aligning all of the content of my email signup section to the left with CSS.

Can someone please assist?

Hey @Jessicax ,

Can you share the link to your store please? Thanks!

Hello @Jessicax

Can you share store URL?

@Jessicax Please share your store URL to help you on this.

My store: https://capcovers.myshopify.com
Password: theirt

My store is: https://capcovers.myshopify.com
The Password is: theirt

Hey @Jessicax ,

Go to your theme’s “Edit Code” Option, then in the search bar type “theme.liquid”
Below the tag “” tag paste the following. Screenshot attached for reference.


Screenshot is for reference only, the correct code to paste is the one shown above.

1 Like

@Jessicax Please follow below steps for aligning all of the content of my email signup section to the left in footer section.

  1. From admin, go to “Online Store” → “Themes”.
  2. Click “Customize” button from the current theme.
  3. Select footer section and paste below code in the “Custom CSS” field as shown in below image.
.newsletter__wrapper {
    text-align: left;
}
.newsletter__subheading {
    margin-left: 0;
    margin-right: 0;
}
.newsletter-form {
    margin-left: 0;
    margin-right: 0;
    flex-direction: row;
    justify-content: left;
}

  1. Save.

Please provide your support by click “Like” and “Accepted” if our solution works for you. Thanks for your support.

Hello,

Just ran across this solution and it works great - but it makes my background not full width.

For reference my store is bombsupply.com - what would I need to add or modify to make the background color full width but keep the text where it is?