• I have horizontal blog display with image on the left. On mobile I want the image to go first and be in the centre. Right now it does go before the post but it is not aligned, so it is displayed like it is either cropped or aligned to the right.
    How can I change it?
    Thank you!

Viewing 1 replies (of 1 total)
  • Branko

    (@brankoconjic)

    Hi @iguanagold,

    You can try with this CSS:

    @media screen and (max-width: 960px) {
        .si-blog-entry-wrapper .entry-media > a { 
            display: flex; 
            justify-content: center; 
        }
    }

    The CSS can be added into the Additional CSS field in Appearance » Customize.

    Let me know if that worked for you.

Viewing 1 replies (of 1 total)

The topic ‘image alignment on mobile’ is closed to new replies.