• i see this css causing issue on single post page
    .single-content p>img {
    display: inline-block;
    }

    even after doing image aligncenter
    the image CSS from WordPress not working.

Viewing 1 replies (of 1 total)
  • Hi,
    Your standard image block shouldn’t be wrapped in a p tag. Not sure how that is happening on your site. This would only be CSS that should apply to inline images. Can you post a link?

    As a workaround you can add this CSS:

    .single-content p>img.aligncenter {
        display: block;
    }

    Ben

Viewing 1 replies (of 1 total)
  • The topic ‘Latest Update caused css issue’ is closed to new replies.