Site logo

Archived topic

alternate blog post featured image

3 replies · Started by sparkle on October 25, 2021

Viewing posts 1–4 of 4

hi there,

i want to alternate the post archive featured images to the right and left. i tried this

.blog .inside-article, archive .inside-article:nth-child(even) {
     flex-direction: column-reverse;
 }

but it didn't do quite what i wanted. is there a way to do this with css or a function?

be well.

Hi Sparkle,

Give this CSS a try:

.blog .site-main > .post:nth-child(odd)>.inside-article .post-image, .archive .site-main > .post:nth-child(odd)>.inside-article .post-image{
    float: right;
}

Let me know :)

ah! and here i was trying to be all fancy with flex. thank you very much. :)

No problem :)

This archived topic is closed to new replies.