Archived topic
Trying to move title under featured image on most recent posts
3 replies · Started by Tom on January 16, 2022
Viewing posts 1–4 of 4
Hello. I can't seem to figure out how to move the title under the featured image for my most recent posts, using the GeneratePress most recent posts. Here's a link to my home page. Could you assist?
Hi Tom,
I see you're using some sort of a WP Query block for the latest posts. Does the block have an option to lay things out the way you wanted?
If not, we may have to go w/ custom CSS:
You can try this one out:
.wp-block-query ul.is-flex-container > li {
display: flex;
flex-direction: column;
}
.wp-block-query ul.is-flex-container > li .wp-block-post-title {
order: 2;
}
.wp-block-query ul.is-flex-container > li figure.alignwide.wp-block-post-featured-image {
order: 1;
}
That worked. Thank you!
No problem. :D
This archived topic is closed to new replies.