New Shopify Certification now available: Liquid Storefronts for Theme Developers

How to have a like a small cut in photo thumbnail in collections

Solved
sweetchin23
Excursionist
43 0 6

Hello, how can I achieve the image below? is possible to achieve? It has a cut in the upper right of the thumbnail.

Thank you!

 

 

Screen Shot 2023-11-08 at 9.26.02 AM.png

Accepted Solution (1)
Dan-From-Ryviu
Shopify Partner
5672 1043 1069

This is an accepted solution.

Please add this code at the bottom of your base.css file 

.grid__item .card-wrapper {
    overflow: hidden;
}
.grid__item .card-wrapper .card:before {
    position: absolute;
    right: -100px;
    top: -100px;
    width: 200px;
    height: 200px;
    background-color: #fff;
    content: '';
    z-index: 2;
    transform: rotate(45deg);
}

 

- Helpful? Like and Accept a solution. - Donate: Buy coffee - or Paypal me ❤️
- Ryviu - Product Reviews app, collect consumer photo reviews, import reviews from AliExpress, Amazon, Etsy, Shoppe and Walmart and CSV.
- Lookfy app: Create Image Lookbook, Photo Gallery with product hotspots
- Enjoy 3 months of Shopify for $1/month. Sign up now

View solution in original post

Replies 4 (4)
Dan-From-Ryviu
Shopify Partner
5672 1043 1069

It can be, please share your store link 

- Helpful? Like and Accept a solution. - Donate: Buy coffee - or Paypal me ❤️
- Ryviu - Product Reviews app, collect consumer photo reviews, import reviews from AliExpress, Amazon, Etsy, Shoppe and Walmart and CSV.
- Lookfy app: Create Image Lookbook, Photo Gallery with product hotspots
- Enjoy 3 months of Shopify for $1/month. Sign up now

sweetchin23
Excursionist
43 0 6
Dan-From-Ryviu
Shopify Partner
5672 1043 1069

This is an accepted solution.

Please add this code at the bottom of your base.css file 

.grid__item .card-wrapper {
    overflow: hidden;
}
.grid__item .card-wrapper .card:before {
    position: absolute;
    right: -100px;
    top: -100px;
    width: 200px;
    height: 200px;
    background-color: #fff;
    content: '';
    z-index: 2;
    transform: rotate(45deg);
}

 

- Helpful? Like and Accept a solution. - Donate: Buy coffee - or Paypal me ❤️
- Ryviu - Product Reviews app, collect consumer photo reviews, import reviews from AliExpress, Amazon, Etsy, Shoppe and Walmart and CSV.
- Lookfy app: Create Image Lookbook, Photo Gallery with product hotspots
- Enjoy 3 months of Shopify for $1/month. Sign up now

sweetchin23
Excursionist
43 0 6

Thank you very much! 🙂 It works well. 🙂