Shopify themes, liquid, logos, and UX
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
Hello, can someone help me with making my newletter radius to 18px?
Website: https://d8106d-4.myshopify.com/
Solved! Go to the solution
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:
Please don't forget to Like and Mark Solution to the post that helped you. Thanks!
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:
Please don't forget to Like and Mark Solution to the post that helped you. Thanks!