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
Hi I am trying to round corners in the field of my contact form here.
approximatelly 10 px.
Do you have any idea how please?
https://wmqgez-r2.myshopify.com/
Solved! Go to the solution
This is an accepted solution.
Hi @Artez
1. Go to Online Store -> Theme -> Edit code.
2. Open your theme.liquid file
3. In theme.liquid, paste the below code before </head>
<style>
.field:after {
border-radius: 15px !important;
}
</style>
If my reply is helpful, kindly click like and mark it as an accepted solution.
Thanks!
This is an accepted solution.
Hi @Artez
1. Go to Online Store -> Theme -> Edit code.
2. Open your theme.liquid file
3. In theme.liquid, paste the below code before </head>
<style>
.field:after {
border-radius: 15px !important;
}
</style>
If my reply is helpful, kindly click like and mark it as an accepted solution.
Thanks!
thank you dear!
Hi @Artez
let try to add this custom CSS code:
.field:after, .select:after, .customer .field:after, .customer select:after, .localization-form__select:after {
border-radius: 10px;
}