E-mail newsletter design

Hello!

I hope you are all having a great day.

I was wondering if anyone knows how to change the circular box around the e-mail section to a rectangular box.

Thank you in advance.

Hello there! You must find the element in your theme code and add the following CSS style:

.your-element {
border-radius: 0 !important;
}

Hope my answer helps :smiley:

Hi - this does not seem to work for me.

Please add this code to Custom CSS in Sales channels > Online store > Themes > Customize > Theme settings

.newsletter-form__field-wrapper .field:after { border-radius: 0; }

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

.field:after, {
border-radius: 0px !important;
}

result

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