Have your say in Community Polls: What was/is your greatest motivation to start your own business?

Getting rid of grey when hover image on spotlight theme

Solved

Getting rid of grey when hover image on spotlight theme

gihan7575
Explorer
60 1 7

As you can see, when you hover over a product on my collection page there's this greyness that appears as you hover. I want to remove it.

 

https://lobonewyork.com/collections/all-bags

Gigi
Accepted Solution (1)

Raj-webdesigner
Shopify Partner
349 87 82

This is an accepted solution.

Follow Step

1) Open Edit Code

2) Find Base.css File

3) Open  base.css File And Ctrl + F and Past Than Find This Line  

.media>img

After 
Show This Code 

.media>img {
  object-fit: cover;
  object-position: center center;
  transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

Chage This Code With Below Code

.media>img {
    object-fit: cover;
    object-position: center center;
    transition: auto .8s ease;
}

Are you looking for Shopify Developer then your search is over I will help you


If you require further help to optimize your store, please don’t hesitate to reach out.


This contribution will always benefit you and you will get my full help easily and you can contact me easily.


Your Willpower Contribution Link

:-

❤️Tip❤️

Contect On My Mail :-Mail@gmail.com


View solution in original post

Replies 2 (2)

Raj-webdesigner
Shopify Partner
349 87 82

This is an accepted solution.

Follow Step

1) Open Edit Code

2) Find Base.css File

3) Open  base.css File And Ctrl + F and Past Than Find This Line  

.media>img

After 
Show This Code 

.media>img {
  object-fit: cover;
  object-position: center center;
  transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

Chage This Code With Below Code

.media>img {
    object-fit: cover;
    object-position: center center;
    transition: auto .8s ease;
}

Are you looking for Shopify Developer then your search is over I will help you


If you require further help to optimize your store, please don’t hesitate to reach out.


This contribution will always benefit you and you will get my full help easily and you can contact me easily.


Your Willpower Contribution Link

:-

❤️Tip❤️

Contect On My Mail :-Mail@gmail.com


gihan7575
Explorer
60 1 7

Thanks, I hated it so much it made my website look cheap and ugly 😁

Gigi