Rounded borders for newsletter form

Solved

Rounded borders for newsletter form

Daniel19901
Shopify Partner
244 0 65

Hi, I would like my newsletter form in the footer as well as its button to be rounded 30px, can anyone help ?
(No settings for this)
https://c50810-c5.myshopify.com/

 

Daniel19901_0-1726047750068.png

 

Accepted Solutions (4)

Dan-From-Ryviu
Shopify Partner
9534 1918 1953

This is an accepted solution.

Hi @Daniel19901 

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

.t4s-newsletter-design-1 .t4s-newsletter__inner .t4s-newsletter__email {
border-radius: 30px 0 0 30px;
}
.t4s-newsletter__inner .t4s-newsletter__submit {
border-radius: 0 30px 30px 0
}

Screenshot 2024-09-11 at 16.46.17.png

- Helpful? Like and Accept solution! or Buy me coffee
- Ryviu - Reviews & QA app: Collect product reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Shopee, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image: Easy and fast to create Photo Gallery, Lookbook, Shop The Look.
- Ryviu: Aliexpress Reviews - AliExpress Reviews Importer, one-click import aliexpress reviews, export reviews to CSV file.
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- Enjoy 1 month of Shopify for $1. Sign up now.

View solution in original post

Rahul_dhiman
Shopify Partner
544 109 109

This is an accepted solution.

Hello @Daniel19901 
Go to online store ----> themes ----> actions ----> edit code---->base.css
add this code at the end of the file.

.t4s_frm_input:focus, input:not([type=submit]):not([type=checkbox]):focus, select:focus, textarea:focus {
border-radius: 30px !important;
}
button.t4s-w-100.t4s-newsletter__submit.t4s-truncate.t4s-btn-loading__svg {
border-radius: 30px !important;
}

result
5.png

If this was helpful, hit the like button and accept the solution.
Thanks

Was I helpful?

Buy me a coffee



Want to modify or custom changes or bug fix on store . Or Need help with your store? Or -Want Complete Storefront
Email me [email protected] - Skype: live:dhiman.639
Checkout Some Free Sections Here
Mobile:- +91 62390-46167

View solution in original post

PageFly-Richard
Shopify Partner
4661 1068 1725

This is an accepted solution.

Hi @Daniel19901 

 

This is Richard from PageFly - Shopify Page Builder App

 

Please add this code to your theme.liquid above the </head> to get this solved

Step 1: Online Stores > Themes > More Actions > Edit code

Step 2: click on theme.liquid and paste the code above the </head>

<style>
.t4s-col.t4s-col-item.is--col-email input {
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
}
button.t4s-w-100.t4s-newsletter__submit.t4s-truncate.t4s-btn-loading__svg {
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
}
</style>

PageFlyRichard_0-1726048395539.png

 

Hope this can help you solve the issue 

 

Best regards,

Richard | PageFly 

Please let me know if it works by giving it a Like or marking it as a solution!


➜ Optimize your Shopify store with PageFly Page Builder (Free plan available) 


All features are available from Free plan. Live Chat Support is available 24/7.

View solution in original post

Tech_Coding
Shopify Partner
301 76 67

This is an accepted solution.

Hello @Daniel19901 

You can add code by following these steps

1. Go to Online Store -> Theme -> Edit code.
2. Open your theme.liquid file

3. Paste the below code before </body> on theme.liquid
<style>
   .t4s-newsletter-design-1 .t4s-newsletter__inner .t4s-newsletter__email {
       border-radius: 30px 0 0 30px;
    }
    .t4s-newsletter__inner .t4s-newsletter__submit {
        border-radius: 0 30px 30px 0
     }
</style>

Tech_Coding_0-1726048784541.png

my reply helpful? Click Like to let me know!
your question answered? Mark it as an Accepted Solution.

my reply helpful? Click Like to let me know!
your question answered? Mark it as an Accepted Solution.
Shopify UI Developer
Your Coffee Tips adds a little sweetness to my day.

View solution in original post

Replies 5 (5)

Dan-From-Ryviu
Shopify Partner
9534 1918 1953

This is an accepted solution.

Hi @Daniel19901 

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

.t4s-newsletter-design-1 .t4s-newsletter__inner .t4s-newsletter__email {
border-radius: 30px 0 0 30px;
}
.t4s-newsletter__inner .t4s-newsletter__submit {
border-radius: 0 30px 30px 0
}

Screenshot 2024-09-11 at 16.46.17.png

- Helpful? Like and Accept solution! or Buy me coffee
- Ryviu - Reviews & QA app: Collect product reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Shopee, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image: Easy and fast to create Photo Gallery, Lookbook, Shop The Look.
- Ryviu: Aliexpress Reviews - AliExpress Reviews Importer, one-click import aliexpress reviews, export reviews to CSV file.
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- Enjoy 1 month of Shopify for $1. Sign up now.

Rahul_dhiman
Shopify Partner
544 109 109

This is an accepted solution.

Hello @Daniel19901 
Go to online store ----> themes ----> actions ----> edit code---->base.css
add this code at the end of the file.

.t4s_frm_input:focus, input:not([type=submit]):not([type=checkbox]):focus, select:focus, textarea:focus {
border-radius: 30px !important;
}
button.t4s-w-100.t4s-newsletter__submit.t4s-truncate.t4s-btn-loading__svg {
border-radius: 30px !important;
}

result
5.png

If this was helpful, hit the like button and accept the solution.
Thanks

Was I helpful?

Buy me a coffee



Want to modify or custom changes or bug fix on store . Or Need help with your store? Or -Want Complete Storefront
Email me [email protected] - Skype: live:dhiman.639
Checkout Some Free Sections Here
Mobile:- +91 62390-46167

PageFly-Richard
Shopify Partner
4661 1068 1725

This is an accepted solution.

Hi @Daniel19901 

 

This is Richard from PageFly - Shopify Page Builder App

 

Please add this code to your theme.liquid above the </head> to get this solved

Step 1: Online Stores > Themes > More Actions > Edit code

Step 2: click on theme.liquid and paste the code above the </head>

<style>
.t4s-col.t4s-col-item.is--col-email input {
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
}
button.t4s-w-100.t4s-newsletter__submit.t4s-truncate.t4s-btn-loading__svg {
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
}
</style>

PageFlyRichard_0-1726048395539.png

 

Hope this can help you solve the issue 

 

Best regards,

Richard | PageFly 

Please let me know if it works by giving it a Like or marking it as a solution!


➜ Optimize your Shopify store with PageFly Page Builder (Free plan available) 


All features are available from Free plan. Live Chat Support is available 24/7.

Tech_Coding
Shopify Partner
301 76 67

This is an accepted solution.

Hello @Daniel19901 

You can add code by following these steps

1. Go to Online Store -> Theme -> Edit code.
2. Open your theme.liquid file

3. Paste the below code before </body> on theme.liquid
<style>
   .t4s-newsletter-design-1 .t4s-newsletter__inner .t4s-newsletter__email {
       border-radius: 30px 0 0 30px;
    }
    .t4s-newsletter__inner .t4s-newsletter__submit {
        border-radius: 0 30px 30px 0
     }
</style>

Tech_Coding_0-1726048784541.png

my reply helpful? Click Like to let me know!
your question answered? Mark it as an Accepted Solution.

my reply helpful? Click Like to let me know!
your question answered? Mark it as an Accepted Solution.
Shopify UI Developer
Your Coffee Tips adds a little sweetness to my day.

Rahul_dhiman
Shopify Partner
544 109 109

Thanks for accepting the solution.
Please hit the like button also.

Was I helpful?

Buy me a coffee



Want to modify or custom changes or bug fix on store . Or Need help with your store? Or -Want Complete Storefront
Email me [email protected] - Skype: live:dhiman.639
Checkout Some Free Sections Here
Mobile:- +91 62390-46167