How would we align 'add to cart' button to bottom in collections (stilleto theme)?

Solved

How would we align 'add to cart' button to bottom in collections (stilleto theme)?

Adrian92
Tourist
5 0 1

Hello, im using an app for reviews and other app for the add to cart button. But it seems like it misalign and it makes it look very ugly and unprofessional. Can some one please help me how I can align the add to cart button. Maybe I need to desinstall the app and add a code after modify? Please help and thank you in advance 🙂 

 

www.PandoraNarghileaShop.com

Accepted Solution (1)

Made4uo-Ribe
Shopify Partner
10203 2423 3069

This is an accepted solution.

Hi @Adrian92 

Do you mean this one?

Made4uoRibe_0-1714079518008.png

if it is, check this one:

From your Shopify admin dashboard, click on "Online Store" and then "Themes".

Find the theme that you want to edit and click on "Actions" and then "Edit code".

In the "Assets" folder, click on "base.css, style.css or theme.css" file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:

 

.product-item__inner.globo-swatch-product-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 35rem;
}

 

And Save. 

 

 

Please don't forget to Like and Mark Solution to the post that helped you. Thanks!

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.

View solution in original post

Replies 2 (2)

Made4uo-Ribe
Shopify Partner
10203 2423 3069

This is an accepted solution.

Hi @Adrian92 

Do you mean this one?

Made4uoRibe_0-1714079518008.png

if it is, check this one:

From your Shopify admin dashboard, click on "Online Store" and then "Themes".

Find the theme that you want to edit and click on "Actions" and then "Edit code".

In the "Assets" folder, click on "base.css, style.css or theme.css" file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:

 

.product-item__inner.globo-swatch-product-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 35rem;
}

 

And Save. 

 

 

Please don't forget to Like and Mark Solution to the post that helped you. Thanks!

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.
Adrian92
Tourist
5 0 1

Works peftectly, thanks!