[Resolved] alternate blog post featured image

Home Forums Support [Resolved] alternate blog post featured image

Home Forums Support alternate blog post featured image

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1975075
    sparkle

    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.

    #1975131
    Ying
    Staff
    Customer Support

    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 πŸ™‚

    #1976865
    sparkle

    ah! and here i was trying to be all fancy with flex. thank you very much. πŸ™‚

    #1978896
    Ying
    Staff
    Customer Support

    No problem πŸ™‚

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.