Adjusting the level of the product images on homepage

Adjusting the level of the product images on homepage

mandysuen
Tourist
7 0 1

Hello, 

 

I'm having some trouble with the way my product images are displayed and aligned on the homepage. As you can see there is a massive gap between the product name of the bucket hat and the choose options button. 

 

I have been informed that to manually adjust the gap, this will require an expertise with coding and wanted to see if anyone could help me with that! Thank you!

Screen Shot 2024-09-11 at 2.43.14 PM.png

 

Replies 13 (13)

Sangeetanahar
Explorer
541 36 69

hello @mandysuen 

can you please send me the Website URL.

thanks

Was I helpful?

Buy me a coffee



Want to modify or custom changes or bug fix on store . Or Need help with your store? Or -Want Complete Storefront
Email me [email protected] - Skype: live:sangeetarahuldhiman -Whatsapp: +917009811712
Checkout Some Free Sections Here
mandysuen
Tourist
7 0 1

@Sangeetanahar  here you go - but it's currently password protected.

 

https://classtrip.world/

mandysuen
Tourist
7 0 1

Screen Shot 2024-09-11 at 5.55.13 PM.png

How about this? @Sangeetanahar  would this be helpful?

Sangeetanahar
Explorer
541 36 69

hello @mandysuen 

also give me the password

Was I helpful?

Buy me a coffee



Want to modify or custom changes or bug fix on store . Or Need help with your store? Or -Want Complete Storefront
Email me [email protected] - Skype: live:sangeetarahuldhiman -Whatsapp: +917009811712
Checkout Some Free Sections Here

BSSCommerce-B2B
Shopify Partner
1739 524 584

@mandysuen , follow this post it could help you 🙂

https://community.shopify.com/c/shopify-design/product-cards-alignment/m-p/2742748

 

B2B Wholesale Solution: Streamline your B2B operation with advanced features like wholesale registration forms, custom pricing.


B2B Portal, Quote, Net 30: Speed up purchasing and streamline your quotation process with advanced features like quick order, request for quote.


B2B Lock Password Protect: Easily control access to pages, products, and pricing with robust features.


BSS Commerce - Full-service eCommerce Agency I Use Shopify for 1$ in the first month now

BSSCommerce-B2B
Shopify Partner
1739 524 584

@mandysuen ,

Step 1. Go to Admin -> Online store -> Theme > Edit code

BSSCommerceB2B_1-1726062953347.png

Step 2. Find the file theme.liquid.

Step 3. Add this code above </body> tag

<style>
 .card__content .card__information { 
     display: flex; 
     flex-direction: column; 
     justify-content: end; 
 }
</style>

Result

BSSCommerceB2B_0-1726062907924.png

B2B Wholesale Solution: Streamline your B2B operation with advanced features like wholesale registration forms, custom pricing.


B2B Portal, Quote, Net 30: Speed up purchasing and streamline your quotation process with advanced features like quick order, request for quote.


B2B Lock Password Protect: Easily control access to pages, products, and pricing with robust features.


BSS Commerce - Full-service eCommerce Agency I Use Shopify for 1$ in the first month now

mandysuen
Tourist
7 0 1

@BSSCommerce-B2B  this has worked but what if I want to also move the hats?

BSSCommerce-B2B
Shopify Partner
1739 524 584

@mandysuen , you want to move it to bottom or center?

B2B Wholesale Solution: Streamline your B2B operation with advanced features like wholesale registration forms, custom pricing.


B2B Portal, Quote, Net 30: Speed up purchasing and streamline your quotation process with advanced features like quick order, request for quote.


B2B Lock Password Protect: Easily control access to pages, products, and pricing with robust features.


BSS Commerce - Full-service eCommerce Agency I Use Shopify for 1$ in the first month now

mandysuen
Tourist
7 0 1
To the center!
BSSCommerce-B2B
Shopify Partner
1739 524 584

@mandysuen , change the code like i mention below 

B2B Wholesale Solution: Streamline your B2B operation with advanced features like wholesale registration forms, custom pricing.


B2B Portal, Quote, Net 30: Speed up purchasing and streamline your quotation process with advanced features like quick order, request for quote.


B2B Lock Password Protect: Easily control access to pages, products, and pricing with robust features.


BSS Commerce - Full-service eCommerce Agency I Use Shopify for 1$ in the first month now

BSSCommerce-B2B
Shopify Partner
1739 524 584

 

@mandysuen , change the previous code like this

 

<style>
    .card__content .card__information {
        display: flex;
        flex-direction: column;
        justify-content: end;
    }
    .card .card__media img {
        object-fit: contain;
    }
    .card__content {
        flex-grow: unset;
    }
    .card__inner {
        flex-grow: 1
    }
</style>

 

Result:

BSSCommerceB2B_0-1726122550243.png

B2B Wholesale Solution: Streamline your B2B operation with advanced features like wholesale registration forms, custom pricing.


B2B Portal, Quote, Net 30: Speed up purchasing and streamline your quotation process with advanced features like quick order, request for quote.


B2B Lock Password Protect: Easily control access to pages, products, and pricing with robust features.


BSS Commerce - Full-service eCommerce Agency I Use Shopify for 1$ in the first month now

Made4uo-Ribe
Shopify Partner
8292 1989 2446

Hi @mandysuen 

Check this one. 

From you Admin page, go to Online Store > Themes

Select the theme you want to edit

Under the Asset folder, open the main.css(base.css, style.css or theme.css)

Then place the code below at the very bottom of the file.

 

.card__content {
    flex-grow: 0;
}
.card:not(.ratio) {
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 10%;
    justify-content:flex-end
}

 

And Save. 

Result:

Made4uoRibe_0-1726091469668.png

 

 

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 is highly appreciated. Coffee tips fuels my dedication.
Get EXPERIENCED Shopify developers at affordable rates—visit Made4Uo.com for quick quote!
Do not lost your Shopify store! Get FREE trial with ✔️ Rewind Backup: Automatic, reliable, stress-free.
Need THEME UPDATES but has custom codes? No worries, contact us for affordable price.
mandysuen
Tourist
7 0 1

Hi @Made4uo-Ribe 

 

The above is not working.  Screen capped what I have added to see if I'm doing something wrong?

 

Screen Shot 2024-09-12 at 12.13.28 PM.png