Explain how to make thumbnail icon change to image

zaim

Collaborate
Collaborate
Registered
Joined
Aug 26, 2019
Messages
219
Points
153

Reputation:

image.thumb.jpg.daae95223c91cb2359ee0261b2c9348e.jpg


add this code into your custom.css

CSS:
.ipsNoThumb::after {
  content: '';
}

.ipsNoThumb {
      background-image: url("Here is a link to your image");
      background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
}
 
Top