Re: How do I make buttons round with Flow theme please?

Solved

How do I make buttons round with Flow theme please?

BBS3
Excursionist
14 0 1

Can you please help change rectangular buttons into round ones with a Flow theme please?

It's for this store: 

https://bottlebarandshop.com

Many thanks

 

Accepted Solution (1)
Moeed
Shopify Partner
5366 1452 1738

This is an accepted solution.

Hey @BBS3 

 

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>
.account-section--btn, .advanced-layout--hero__text-block .btn, .advanced-layout--hero__text-block .btn--secondary, .ajaxcart__footer .cart__checkout, .btn--full, .btn--load-more, .footer-email-submit, .homepage-featured-box-btn, .homepage-section-btn, .mobile-facets__open, .onboarding--sold-out a.btn, .quick-add-button, .quick-add-button-onboarding, .quick-add-button-variants, .shop-now-button, .shop-now-button-onboarding, .shopify-challenge__button, .show-view-all--button .btn, .sold-out-button, .spr-button {
    border-radius: 20px !important;
}
</style>

RESULT:

Moeed_0-1696421804783.png

 

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

 

Best Regards,
Moeed

- Need a Shopify Specialist? Chat on WhatsApp

- Custom Design | Advanced Coding | Store Modifications


View solution in original post

Replies 13 (13)

Moeed
Shopify Partner
5366 1452 1738

Hey @BBS3 

 

Could you please provide your Store URL and, if applicable, the Password too? Your cooperation is greatly appreciated!

 

Best Regards,
Moeed

- Need a Shopify Specialist? Chat on WhatsApp

- Custom Design | Advanced Coding | Store Modifications


websensepro
Shopify Partner
1214 135 156

Hi, @BBS3.

 

Please provide your Store URL and Password, Your cooperation is greatly appreciated!

 

Best Regards,
Websensepro

Need a Shopify developer?
Hire us at WebSensePro
For Shopify Design Changes | Shopify Custom Coding | Custom Modifications
Subscribe to our youtube channel or buy us a Cofee here

Free Shopify Beginner Tutorial
BBS3
Excursionist
14 0 1

Sure, it's re this store:

https://bottlebarandshop.com

websensepro
Shopify Partner
1214 135 156

Hi, @BBS3.

 

Follow These Steps.

Goto Online store > Assets > Edit code > find Base.css File and paste the code mentioned below.

 

 

a {
    border-radius: 20px !important;
}
input#subscribe {
    border-radius: 20px;
}

 

 

Result:

websensepro_0-1696421562578.png

 

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

 

Best Regards,
websensepro

 

Need a Shopify developer?
Hire us at WebSensePro
For Shopify Design Changes | Shopify Custom Coding | Custom Modifications
Subscribe to our youtube channel or buy us a Cofee here

Free Shopify Beginner Tutorial
BBS3
Excursionist
14 0 1

not working unfortunately..

Moeed
Shopify Partner
5366 1452 1738

This is an accepted solution.

Hey @BBS3 

 

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>
.account-section--btn, .advanced-layout--hero__text-block .btn, .advanced-layout--hero__text-block .btn--secondary, .ajaxcart__footer .cart__checkout, .btn--full, .btn--load-more, .footer-email-submit, .homepage-featured-box-btn, .homepage-section-btn, .mobile-facets__open, .onboarding--sold-out a.btn, .quick-add-button, .quick-add-button-onboarding, .quick-add-button-variants, .shop-now-button, .shop-now-button-onboarding, .shopify-challenge__button, .show-view-all--button .btn, .sold-out-button, .spr-button {
    border-radius: 20px !important;
}
</style>

RESULT:

Moeed_0-1696421804783.png

 

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

 

Best Regards,
Moeed

- Need a Shopify Specialist? Chat on WhatsApp

- Custom Design | Advanced Coding | Store Modifications


BBS3
Excursionist
14 0 1

It's worked - thank you so much! 🙂

Moeed
Shopify Partner
5366 1452 1738

Thank you for your reply. I'm glad to hear that the solution worked well for you. If you require any more help, please don't hesitate to reach out. If you find this information useful, a Like would be greatly appreciated.

- Need a Shopify Specialist? Chat on WhatsApp

- Custom Design | Advanced Coding | Store Modifications


syedsumaimaly
Trailblazer
147 16 22

@BBS3 Would you mind to share your store URL website, with password if its protected? Thanks!

syedsumaimaly
Trailblazer
147 16 22

Hi @BBS3 

Follow these Steps:

Go to Online Store  Edit Code Find theme.liquid file or base.css

Add the following code in the bottom of the file above </body> tag

button.quick-add-button {
    border-radius: 20px;
}

a.quick-add-button-variants {
    border-radius: 20px;
}

RESULT:

syedsumaimaly_0-1696421555224.png

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

 

BBS3
Excursionist
14 0 1

this hasn't worked unfortunately

BBS3
Excursionist
14 0 1

I put the code in the theme.liquid file above the 'body' tag but it hasn't worked - anything else I could try? thanks! 🙂

syedsumaimaly
Trailblazer
147 16 22

@BBS3  Try this code

 

{% style %}
button.quick-add-button {
    border-radius: 20px;
}

a.quick-add-button-variants {
    border-radius: 20px;
}
{% endstyle %}

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