wp-show-posts icon indicating copy to clipboard operation
wp-show-posts copied to clipboard

Image alignment for mobile devices

Open emos321 opened this issue 4 years ago • 0 comments

Hello

If we set image "Image size" to eg thumbnail-150x150 and "Image alignment" to left, the desktop view is correct.

.wp-show-posts-image.wpsp-image-left {
     float: left;
     margin-right: 1.5em;
}

If we change the view to mobile image changes float to none.

.wp-show-posts-image.wpsp-image-left, .wp-show-posts-image.wpsp-image-right {
     float: none;
     margin-right: 0;
     margin-left: 0;
}

An example in the right sidebar at https://gpsites.co/dispatch/

emos321 avatar Jan 05 '21 09:01 emos321