Make Buttons Rounded Password Page

Solved

Make Buttons Rounded Password Page

martujv
Trailblazer
213 2 45

Hello! 

 

I want to make the buttons rounded in my password section inside the password page.

 

This is how it looks now:

Captura de pantalla 2025-01-30 a las 10.49.34.png

This is how it should look:

Captura de pantalla 2025-01-30 a las 10.49.39.png

My theme is stiletto and my website is https://5lk4ulpax05ivt8d-60150284501.shopifypreview.com

 

Thanks in advance!

Accepted Solution (1)

CodingFifty
Shopify Partner
525 80 99

This is an accepted solution.

Hi @martujv,


Go to Online Store, then Theme, and select Edit Code.
Search for base.css/theme.css/style.css/main.css/custom.css file Add the provided code at the end of the file.

button.password-unlock__button.btn.btn--primary.btn--full,
input#password-password {
    border-radius: 15px !important;
}

CodingFifty_0-1738258489913.png

 

Coding Fifty || Shopify Partner
For any custom section queries, please visit: Fiverr Profile
Found my response useful? Like it and mark as Accepted Solution!
For additional discussions, reach out via: Email ID: codingfifty@gmail.com

View solution in original post

Replies 2 (2)

CodingFifty
Shopify Partner
525 80 99

This is an accepted solution.

Hi @martujv,


Go to Online Store, then Theme, and select Edit Code.
Search for base.css/theme.css/style.css/main.css/custom.css file Add the provided code at the end of the file.

button.password-unlock__button.btn.btn--primary.btn--full,
input#password-password {
    border-radius: 15px !important;
}

CodingFifty_0-1738258489913.png

 

Coding Fifty || Shopify Partner
For any custom section queries, please visit: Fiverr Profile
Found my response useful? Like it and mark as Accepted Solution!
For additional discussions, reach out via: Email ID: codingfifty@gmail.com
martujv
Trailblazer
213 2 45

Thank you!