Dawn Theme Newsletter Section: Change form from box to underline and add text below the form

Dawn Theme Newsletter Section: Change form from box to underline and add text below the form

jayzor74
Tourist
11 0 1

Hi, My site is vaultgoods.biz and I'm trying to duplicate the design of newsletter section here: 

jayzor74_0-1720495425224.png

 

I was already able to change the arrow to a button. Now I want to change the form from box to underline, and increase the width. Lastly, add a text for disclaimer below the form.

 

Can someone help me with code pls? Thanks!

 

 

 

Replies 2 (2)

Vinsinfo
Shopify Partner
425 143 142

@jayzor74 Please follow below steps to display disclaimer text under the form and change form box to underline. Let me know whether it is helpful for you.

 

1. From admin, go to "Online Store" -> "Themes".
2. Click action button from the current theme and select "Edit code".
3. Go to "footer.liquid" file and search "{%- if form.errors -%}" and paste the below code before that line like below image and save changes.

 

<p>You can opt-out at any time. See our <a href="#">Privacy Policy</a> and <a href="#">Terms</a>.</p>

 

Vinsinfo_0-1720529311125.png

 

4. Click "Exit" icon and then click "Customize" button from the current theme.
Vinsinfo_1-1720529317392.png

 

5. Click "Footer" section.
Vinsinfo_2-1720529322055.png

 

6. Then scroll down and paste the below code in "Custom CSS" field and save changes.

 

.newsletter-form {
    max-width: 45rem !important;
}
.newsletter__wrapper .newsletter-form__field-wrapper {
    max-width: 100% !important;
}
.newsletter-form__field-wrapper .field:after {
    box-shadow: unset !important;
}
.newsletter-form__field-wrapper .field {
    border-bottom: 2px solid #000000;
}
.field__input:focus-visible {
    box-shadow: unset !important;
}

 

Vinsinfo_3-1720529327958.png

 

Result will be like,
Vinsinfo_4-1720529334415.png

 

 
Please provide your support by click "Like" and "Accepted" if our solution works for you. Thanks for your support.
Please reach out to [email protected] for any enquires related to Shopify.
Our Services: Custom Theme Development, Theme Customization, Custom Feature Implementation, Data Migration, Custom APP Development, Website Optimization and Google Merchant Center Support
jayzor74
Tourist
11 0 1

Thanks! I already got this one sorted.