IPS Suite Explain how to make thumbnail icon change to image

Haim

Registered
View attachment 35674

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%;
}
 
Back
Top Bottom