Site logo

Archived topic

How to change the posts design for the tablet mode

2 replies · Started by Muhammad on July 29, 2018

Viewing posts 1–3 of 3

Hi In the home page of my website(https://greenhouseplanter.com/) I have used "WP Show Posts", I have featured image on the Left and description of the image to the right.

But In Tablet Mode the Images comes at the Top and the description at the bottom, Which I don't want. I want it to be the same as that of desktop mode.

How to force it.

Can't I customize how the posts display in tablet?
I have been waiting for 1 hour

Hi there,

it would require a little CSS like so:

@media (max-width: 768px) and (min-width: 360px) {
    .wp-show-posts-image.wpsp-image-left {
        float: left;
        margin-right: 1.5em;
    }
}
This archived topic is closed to new replies.