Home › Forums › Pro Support › retina images when setting size in WPSP › Reply To: retina images when setting size in WPSP
September 25, 2019 at 5:43 pm
#11296
Keymaster
As of right now, you’d need to:
1. Set the image width to 2x the size it actually shows up as: 270
Then add this CSS:
.wp-show-posts-image img {
max-width: 135px;
}
2. Try this:
@media (max-width: 767px) {
.wp-show-posts-image.wpsp-image-left {
float: left;
margin-right: 1.5em;
}
}