• Thank you for building a lovely theme!

    Is it possible to change the alignment of the featured image in blog posts? And if so, how?

    Thank you!

    • This topic was modified 3 years, 11 months ago by consultants.
Viewing 1 replies (of 1 total)
  • Branko

    (@brankoconjic)

    Hey @consultants,

    I’m glad to hear you like the theme!

    You can try this CSS:

    To align the entry media image on single posts to the right, use this:

    .single-post .entry-media {
      display: flex;
    }
    
    .single-post .entry-media img {
      margin: 0 0 0 auto;
    }

    To align it to the left, use this instead:

    .single-post .entry-media {
      display: flex;
    }
    
    .single-post .entry-media img {
      margin: 0 auto 0 0;
    }

    You can add the code into the Additional CSS field in Appearance ? Customize.

    Thanks!

Viewing 1 replies (of 1 total)
  • The topic ‘change featured image alignment’ is closed to new replies.