How to make the email box, country selector, and quantity selector also have rounded corners?

Solved
westaysmiling
Excursionist
24 0 3

The email, language selector, and quantity selector boxes all have sharp edges and I can't find where to round them, how do I do this? My website is : https://westaysmiling.com/ 

 

Accepted Solution (1)
Moeed
Shopify Partner
2407 602 723

This is an accepted solution.

Hey @westaysmiling 

Follow these Steps:

1) Go to Online Store
2) Edit Code
3) Find theme.liquid file
4) Add the following code in the bottom of the file above </body> tag.

 

<style>
.newsletter-form__field-wrapper .field__input, .field:after, button.disclosure__button.localization-form__select.localization-selector.link.link--text.caption-large {
    border-radius: 100px !important;
}
</style>

 

If I managed to help you then, don't forget to Like it and Mark it as Solution!

 

Best Regards,
Moeed

Need a Shopify developer? Chat on WhatsApp


- For Shopify Design Changes | Shopify Custom Coding | Custom Modifications

- Expert in Shopify SEO optimization for higher search rankings.


- Your Coffee Tip , my code - a perfect blend! ❤️

View solution in original post

Replies 6 (6)
Moeed
Shopify Partner
2407 602 723

This is an accepted solution.

Hey @westaysmiling 

Follow these Steps:

1) Go to Online Store
2) Edit Code
3) Find theme.liquid file
4) Add the following code in the bottom of the file above </body> tag.

 

<style>
.newsletter-form__field-wrapper .field__input, .field:after, button.disclosure__button.localization-form__select.localization-selector.link.link--text.caption-large {
    border-radius: 100px !important;
}
</style>

 

If I managed to help you then, don't forget to Like it and Mark it as Solution!

 

Best Regards,
Moeed

Need a Shopify developer? Chat on WhatsApp


- For Shopify Design Changes | Shopify Custom Coding | Custom Modifications

- Expert in Shopify SEO optimization for higher search rankings.


- Your Coffee Tip , my code - a perfect blend! ❤️
westaysmiling
Excursionist
24 0 3

This worked for both the country selector and the email box, but not the quantity selector.

 

 

westaysmiling
Excursionist
24 0 3

Also the quantity selector outline is not wrapped to the new edges.

 

 

PageFly-Lucas
Pathfinder
110 28 27

Hi @westaysmiling 

This is Lucas from PageFly - Landing Page Builder App

 

You can try this code by following these steps: 

Step 1: Go to Online Store->Theme->Edit code.

Step 2: Search file base.css

Step 3: Paste the below code at bottom of the file -> Save

 

.newsletter-form__field-wrapper .field__input, .field:after, button.disclosure__button.localization-form__select.localization-selector.link.link--text.caption-large {

      border-radius: 100px !important;

}

 

Hope that my solution works for you.

Best regards,

Lucas | PageFly

oscprofessional
Shopify Partner
15649 2344 3024

Hello @westaysmiling 

You can try this code: it will be helpful to you

Go to the Online Store->Theme->Edit code->Assets->base.css>Add this code at the bottom.

.field:after, .select:after, .customer .field:after, .customer select:after, .localization-form__select:after {
    border-radius: 33px !important;
}
.localization-form:only-child .button, .localization-form:only-child .localization-form__select {
    border-radius: 33px !important;
}

 

Get pass your Store Core Web Vital Free Speed Optimization Audit, Chat on WhatsApp | Skype : oscprofessionals-87 | Email: pallavi@oscprofessionals.com | Custom Pricing Wholesale App : Free | Hire us | Guaranteed Site Speed Optimization | Website Free Audit | Shopify Theme Customization | Build Shopify Private App | Shopify SEO | Digital Marketing
westaysmiling
Excursionist
24 0 3

Similarly, this only works for the country selector and email box, not the quantity selector.