Add border around each product tile

Solved

Add border around each product tile

cardboardhouse
Excursionist
87 0 16

Hey folks,

I was wondering if someone could help me add a border around the product tiles which would be visible on all pages.

The look would be like the below (just the border and shadow effect)

cardboardhouse_0-1747057781645.png


I'm on the enterprise theme, thanks a lot!

Accepted Solution (1)

BiDeal-Discount
Shopify Partner
801 107 180

This is an accepted solution.

Hi @cardboardhouse 

let try to add this custom css to your file main.css:

product-card.card {
  border: 1px solid rgba(var(--text-color) / .15);
    box-shadow: 0px 1px 6px rgba(var(--text-color) / .15);
    padding: 6px 9px;
}

 the result will be:

BiDealDiscount_0-1747058826526.png

 

- Helpful? Like & Accept solution! Coffee tips fuel my dedication.
- BiDeal Bundle Volume Discounts: Upsell with discount bundles, quantity breaks, volume discounts & mix-and-match bundles. AOV+ with free gifts, free shipping & progressive cart
- Contact me via WhatsApp

View solution in original post

Replies 10 (10)
cardboardhouse
Excursionist
87 0 16

Sorry it didn't do anything 😞

BiDeal-Discount
Shopify Partner
801 107 180

This is an accepted solution.

Hi @cardboardhouse 

let try to add this custom css to your file main.css:

product-card.card {
  border: 1px solid rgba(var(--text-color) / .15);
    box-shadow: 0px 1px 6px rgba(var(--text-color) / .15);
    padding: 6px 9px;
}

 the result will be:

BiDealDiscount_0-1747058826526.png

 

- Helpful? Like & Accept solution! Coffee tips fuel my dedication.
- BiDeal Bundle Volume Discounts: Upsell with discount bundles, quantity breaks, volume discounts & mix-and-match bundles. AOV+ with free gifts, free shipping & progressive cart
- Contact me via WhatsApp
cardboardhouse
Excursionist
87 0 16

You are too good 🤣 - Thanks a lot!

Do you know how I can increase the size of the cards and actually everything on the page? it seems too bunched togther

BiDeal-Discount
Shopify Partner
801 107 180

Yes I'm still here 😂


@cardboardhouse wrote:

You are too good 🤣 - Thanks a lot!

Do you know how I can increase the size of the cards and actually everything on the page? it seems too bunched togther


can you detail this will a screenshot?

- Helpful? Like & Accept solution! Coffee tips fuel my dedication.
- BiDeal Bundle Volume Discounts: Upsell with discount bundles, quantity breaks, volume discounts & mix-and-match bundles. AOV+ with free gifts, free shipping & progressive cart
- Contact me via WhatsApp
cardboardhouse
Excursionist
87 0 16

All good, I fixed it myself - Thanks!

BiDeal-Discount
Shopify Partner
801 107 180

Okay. Let me know if you need support

- Helpful? Like & Accept solution! Coffee tips fuel my dedication.
- BiDeal Bundle Volume Discounts: Upsell with discount bundles, quantity breaks, volume discounts & mix-and-match bundles. AOV+ with free gifts, free shipping & progressive cart
- Contact me via WhatsApp
cardboardhouse
Excursionist
87 0 16

Thank you! Do you know how to add a bottom border just on mobile layout? Like below - The divider should only stretch the length of the box item, not from the full edge to edge

cardboardhouse_0-1747061470890.png

 

BiDeal-Discount
Shopify Partner
801 107 180

let try this css:

@media screen and (max-width: 599px) {
  .shopify-section-group-footer-group ul.slider__grid li:not(:last-child) {
    position: relative;
  }
  .shopify-section-group-footer-group
    ul.slider__grid
    li:not(:last-child):after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: rgb(var(--scrollbar-color, 60 60 60));
  }
}

 

BiDealDiscount_0-1747062234976.png

 

- Helpful? Like & Accept solution! Coffee tips fuel my dedication.
- BiDeal Bundle Volume Discounts: Upsell with discount bundles, quantity breaks, volume discounts & mix-and-match bundles. AOV+ with free gifts, free shipping & progressive cart
- Contact me via WhatsApp
cardboardhouse
Excursionist
87 0 16

Didn't work 😞 - Nothing shows

 

BiDeal-Discount
Shopify Partner
801 107 180

which file did you add that css code? I don't see it on storefront source

- Helpful? Like & Accept solution! Coffee tips fuel my dedication.
- BiDeal Bundle Volume Discounts: Upsell with discount bundles, quantity breaks, volume discounts & mix-and-match bundles. AOV+ with free gifts, free shipping & progressive cart
- Contact me via WhatsApp