Re: Change shape and size collection list slider Stiletto theme

Solved

Change shape and size collection list slider Stiletto theme

Naweed
Tourist
5 0 3

Would like to change the shape and size of the collections displayed under the "Collection list slider".

 

I now have 4 options, Natural, square, portrait & landscape.
I would also like to have a round shape.

 

I am using Stiletto theme.
Homepage url https://137c07-2.myshopify.com/

 

See following picture to get a better understanding of what I want.

 

Thanks in advance 🙂

 

NADA 1.png

Accepted Solution (1)

Spac-es
Shopify Partner
390 112 140

This is an accepted solution.

Add this code in your theme.css file:

.image.collection-item__image.animation--lazy-load.loaded img {
  border-radius: 100%;
}

.collection-item__label {
  --label-gradient-mid: none !important;
}

.collection-item__label {
  text-shadow: -1px 1px 1px black !important;
  color: #EEB10E !important;
}

Result:result.PNG

You can change the color of the text and the shadow if you want. I've set those values because by default they're not visible, since the text and the arrow are white.

 

Any donation is welcome! https://www.buymeacoffee.com/spacescoffee Thanks in advance!

View solution in original post

Replies 2 (2)

Spac-es
Shopify Partner
390 112 140

This is an accepted solution.

Add this code in your theme.css file:

.image.collection-item__image.animation--lazy-load.loaded img {
  border-radius: 100%;
}

.collection-item__label {
  --label-gradient-mid: none !important;
}

.collection-item__label {
  text-shadow: -1px 1px 1px black !important;
  color: #EEB10E !important;
}

Result:result.PNG

You can change the color of the text and the shadow if you want. I've set those values because by default they're not visible, since the text and the arrow are white.

 

Any donation is welcome! https://www.buymeacoffee.com/spacescoffee Thanks in advance!
Naweed
Tourist
5 0 3

Wow thanks. Worked more than perfect.

Really appreciate you taking the time 😄