Rounded borders for newsletter form

Solved

Rounded borders for newsletter form

Daniel19901
Shopify Partner
294 2 86

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
11367 2229 2403

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

- Found this helpful? Hit "Like" and "Accept as Solution"! Support me: Donate!
- Reton: Loyalty & Rewards - Earn points through tasks, redeem for discounts, and enjoy exclusive VIP rewards!
- Ryviu - Reviews & QA app: Collect product reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Shopee, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image - Gain customers with photo gallery, video & shoppable image
Built for Shopify

Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- En...
Sign up now.

View solution in original post

Rahul_dhiman
Shopify Partner
780 149 163

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

Want to modify or custom changes or bug fix on store . Or Need help with your store? Or -Want Complete Storefront

Contact here


BEST CUSTOMER ACCOUNTS APP WITH CUSTOM WISHLIST OPTION 
TRY OUR APP :

PWC: Customer Accounts & Pages

View solution in original post

PageFly-Richard
Shopify Partner
4991 1118 1796

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
514 132 131

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
11367 2229 2403

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

- Found this helpful? Hit "Like" and "Accept as Solution"! Support me: Donate!
- Reton: Loyalty & Rewards - Earn points through tasks, redeem for discounts, and enjoy exclusive VIP rewards!
- Ryviu - Reviews & QA app: Collect product reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Shopee, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image - Gain customers with photo gallery, video & shoppable image
Built for Shopify

Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- En...
Sign up now.

Rahul_dhiman
Shopify Partner
780 149 163

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

Want to modify or custom changes or bug fix on store . Or Need help with your store? Or -Want Complete Storefront

Contact here


BEST CUSTOMER ACCOUNTS APP WITH CUSTOM WISHLIST OPTION 
TRY OUR APP :

PWC: Customer Accounts & Pages

PageFly-Richard
Shopify Partner
4991 1118 1796

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
514 132 131

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
780 149 163

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

Want to modify or custom changes or bug fix on store . Or Need help with your store? Or -Want Complete Storefront

Contact here


BEST CUSTOMER ACCOUNTS APP WITH CUSTOM WISHLIST OPTION 
TRY OUR APP :

PWC: Customer Accounts & Pages