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

Solved

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

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
9534 1916 1950

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 solution! or Buy me coffee
- Ryviu - Reviews & QA app: Collect product reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Shopee, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image: Easy and fast to create Photo Gallery, Lookbook, Shop The Look.
- Ryviu: Aliexpress Reviews - AliExpress Reviews Importer, one-click import aliexpress reviews, export reviews to CSV file.
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- Enjoy 1 month of Shopify for $1. Sign up now.

View solution in original post

Replies 4 (4)

Dan-From-Ryviu
Shopify Partner
9534 1916 1950

It can be, please share your store link 

- Helpful? Like and Accept solution! or Buy me coffee
- Ryviu - Reviews & QA app: Collect product reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Shopee, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image: Easy and fast to create Photo Gallery, Lookbook, Shop The Look.
- Ryviu: Aliexpress Reviews - AliExpress Reviews Importer, one-click import aliexpress reviews, export reviews to CSV file.
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- Enjoy 1 month of Shopify for $1. Sign up now.

sweetchin23
Excursionist
43 0 6
Dan-From-Ryviu
Shopify Partner
9534 1916 1950

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 solution! or Buy me coffee
- Ryviu - Reviews & QA app: Collect product reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Shopee, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image: Easy and fast to create Photo Gallery, Lookbook, Shop The Look.
- Ryviu: Aliexpress Reviews - AliExpress Reviews Importer, one-click import aliexpress reviews, export reviews to CSV file.
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- Enjoy 1 month of Shopify for $1. Sign up now.

sweetchin23
Excursionist
43 0 6

Thank you very much! 🙂 It works well. 🙂