Home › Forums › Pro Support › Floated images on mobile › Reply To: Floated images on mobile
December 10, 2018 at 6:23 pm
#6835
Keymaster
Give this CSS a shot instead:
@media (min-width: 600px) {
.wp-show-posts-image.wpsp-image-left {
float: left;
margin-right: 1.5em;
margin-left: 1em;
}
}
So anything above 600px
will float the image. You can adjust that value as needed.