Make All Buttons Rounded

Solved

Make All Buttons Rounded

martujv
Trailblazer
213 2 45

Hello! I managed to make almost all the buttons and text areas on my website rounded but I can't make the "e-mail placeholder", the "Size selector" and the "Login area text (email and password)" rounded for some reason. 

 

My theme is Stiletto and my website is www.winnerofficial.com

 

Visual reference:

Captura de pantalla 2024-05-07 a las 18.03.27.pngCaptura de pantalla 2024-05-07 a las 18.03.35.pngCaptura de pantalla 2024-05-07 a las 18.04.39.pngCaptura de pantalla 2024-05-07 a las 18.05.11.png

 

I tried all the codes but nothing works!

Accepted Solution (1)

ThePrimeWeb
Shopify Partner
2139 616 519

This is an accepted solution.

Hey @martujv,

 

Go to your theme's "Edit Code" Option, then in the search bar type "theme.liquid"
Below the tag "<head>" tag paste the following. Screenshot attached for reference.

<style>
input, select, textarea, button, .dropdown-button-gsw {
    border-radius: 20px !important;
}
</style>

 

Screenshot is for reference only, the correct code to paste is the one shown above.

ThePrimeWeb_0-1715099288428.jpeg

 

Was I helpful?

Buy me a coffee

🙂

Need help with your store? contact@theprimeweb.com or check out the website
Check out our interview with Shopify!

View solution in original post

Replies 2 (2)

ThePrimeWeb
Shopify Partner
2139 616 519

This is an accepted solution.

Hey @martujv,

 

Go to your theme's "Edit Code" Option, then in the search bar type "theme.liquid"
Below the tag "<head>" tag paste the following. Screenshot attached for reference.

<style>
input, select, textarea, button, .dropdown-button-gsw {
    border-radius: 20px !important;
}
</style>

 

Screenshot is for reference only, the correct code to paste is the one shown above.

ThePrimeWeb_0-1715099288428.jpeg

 

Was I helpful?

Buy me a coffee

🙂

Need help with your store? contact@theprimeweb.com or check out the website
Check out our interview with Shopify!
martujv
Trailblazer
213 2 45

It worked! You made my day, thank you!