We're merging with GenerateBlocks! Learn more here.

Support Forum

Please login to receive premium support.

Support for the free plugin can be found here.

Home Forums Pro Support retina images when setting size in WPSP Reply To: retina images when setting size in WPSP

#11296
Tom
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;
    }
}