• After the update to 6.5, I notice the rendering of quotes is different. Before, there was a margin/space after the quote before the next block of text. With WordPress 6.5, there’s no margin or space, so the quote is jammed together into the next block, so all of the posts that contain quotes look broken.

    Changing “blockquote” in the theme’s style.css fixes this.

    From:
    blockquote
    {
        margin: 0 1.5em;
    }
    
    To:
    blockquote
    {
        margin: 0 1.5em 1.5em;
    }

    Why there’s a difference now with 6.5, I’m not sure.

Viewing 1 replies (of 1 total)
  • Hi,

    Thank you so much for surfacing this issue and for sharing your solution. We greatly appreciate your efforts in identifying the change in the rendering of quotes with the update to WordPress 6.5. It’s helpful contributions like yours that enhance the WordPress experience for everyone.

    We are glad to hear that you were able to resolve the issue by adjusting the blockquote margin in your theme’s style.css file. Your solution will undoubtedly assist others who might be facing the same problem.

    We will make sure to forward this information to the theme developers so that they can consider implementing a similar fix or at least investigate why the update may have affected the styling of blockquotes in this manner. It’s through collaboration like this that we can continue to improve WordPress ??

Viewing 1 replies (of 1 total)
  • The topic ‘After update to 6.5, quotes don’t render correctly’ is closed to new replies.