What's your biggest current challenge? Have your say in Community Polls along the right column.

Re: How to make these banner buttons one above the other instead of side by side?

How to make these banner buttons one above the other instead of side by side?

empiricalarby
Trailblazer
230 1 52

https://empiricalwater.com/

 

Notice the buttons in the image banner: Buy Now and Learn Stuff - They are currently side by side. How can it be adjusted so that Buy Now is centered, and Learn stuff is right below it?

 

Thank you

Replies 2 (2)

Moeed
Shopify Partner
6367 1725 2088

Hey @empiricalarby 

 

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>
@media screen and (min-width: 768px) {
.banner__buttons.banner__buttons--multiple {
    flex-flow: column !important;
}
}
</style>

RESULT:

Moeed_0-1700983166771.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

- Get a quick Shopify quote – Click here!

- Boost Your Sales with Affiliate Marketing - UpPromote: Affiliate & Referral


empiricalarby
Trailblazer
230 1 52

Thank you, can you make this work on mobile as well?