Re: Newsletter corner radius

Solved

How can I adjust my newsletter corner radius to 18px?

Elias10
Excursionist
25 0 3

Hello, can someone help me with making my newletter radius to 18px?

 

Website: https://d8106d-4.myshopify.com/

 

Accepted Solution (1)

Made4uo-Ribe
Shopify Partner
10101 2398 3032

This is an accepted solution.

Hi @Elias10 

Check this one. 

From your Shopify admin dashboard, click on "Online Store" and then "Themes".

Find the theme that you want to edit and click on "Actions" and then "Edit code".

In the "Assets" folder, click on "base.css, style.css or theme.css" file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:

 

.field__input,
.select__select,
.customer .field input,
.customer select {
    border-radius: 18px !important;
}
.field:before,
.select:before,
.customer .field:before,
.customer select:before,
.localization-form__select:before {
    border-radius: 18px !important;
}
.field:after,
.select:after,
.customer .field:after,
.customer select:after,
.localization-form__select:after {
    border-radius: 18px !important;
}
.field:hover.field:after,
.select:hover.select:after,
.select__select:hover.select__select:after,
.customer .field:hover.field:after,
.customer select:hover.select:after,
.localization-form__select:hover.localization-form__select:after {
    border-radius: 18px !important;
}
.field__input:focus-visible,
.select__select:focus-visible,
.customer .field input:focus-visible,
.customer select:focus-visible,
.localization-form__select:focus-visible.localization-form__select:after {
    border-radius: 18px !important;
}
.field__input:focus,
.select__select:focus,
.customer .field input:focus,
.customer select:focus,
.localization-form__select:focus.localization-form__select:after {
    border-radius: 18px !important;
}

 

And Save. 

Result:

Made4uoRibe_0-1704744296234.png

 

 

Please don't forget to Like and Mark Solution to the post that helped you. Thanks!

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.

View solution in original post

Reply 1 (1)

Made4uo-Ribe
Shopify Partner
10101 2398 3032

This is an accepted solution.

Hi @Elias10 

Check this one. 

From your Shopify admin dashboard, click on "Online Store" and then "Themes".

Find the theme that you want to edit and click on "Actions" and then "Edit code".

In the "Assets" folder, click on "base.css, style.css or theme.css" file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:

 

.field__input,
.select__select,
.customer .field input,
.customer select {
    border-radius: 18px !important;
}
.field:before,
.select:before,
.customer .field:before,
.customer select:before,
.localization-form__select:before {
    border-radius: 18px !important;
}
.field:after,
.select:after,
.customer .field:after,
.customer select:after,
.localization-form__select:after {
    border-radius: 18px !important;
}
.field:hover.field:after,
.select:hover.select:after,
.select__select:hover.select__select:after,
.customer .field:hover.field:after,
.customer select:hover.select:after,
.localization-form__select:hover.localization-form__select:after {
    border-radius: 18px !important;
}
.field__input:focus-visible,
.select__select:focus-visible,
.customer .field input:focus-visible,
.customer select:focus-visible,
.localization-form__select:focus-visible.localization-form__select:after {
    border-radius: 18px !important;
}
.field__input:focus,
.select__select:focus,
.customer .field input:focus,
.customer select:focus,
.localization-form__select:focus.localization-form__select:after {
    border-radius: 18px !important;
}

 

And Save. 

Result:

Made4uoRibe_0-1704744296234.png

 

 

Please don't forget to Like and Mark Solution to the post that helped you. Thanks!

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.