• Resolved Greg Mount

    (@gregmount)


    Styling bug in the Kadence Posts block: When Kadence switched to using lists to display posts, the theme was updated to display posts with a uniform height on a boxed layout. However, it looks like the Kadence Blocks Posts block was not. As a result, entries listed in a boxed layout using the Posts block have uneven heights.

    The following is a quick fix:

    .wp-block-kadence-posts .entry {
    height: 100%;
    }

    However, it would be better to update the block to align with the styling used in the theme’s default posts layout for consistency.

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Support victormonk

    (@victormonk)

    Hey Greg,

    Welcome to Kadence Support. We are here to help.

    We have recently reported this issue to our development team, who are actively working on fixing and releasing a fix for this. You can keep an eye on the Kadence Blocks Changelog for an update here.

    Additionally, the current suggested workaround is to use the following CSS:

    .wp-block-kadence-posts .kb-post-list-item {
    display: grid;
    }

    Both CSS methods worked for me, so you can use either one of them as a temporary workaround.

    Thanks for bringing this to us

    Plugin Support aapc

    (@aapc)

    Hi @gregmount

    This issue was fixed in Kadence Blocks 3.5.23. See the October 9th release in the changelog here: https://www.kadencewp.com/kadence-blocks/changelog/

    Please update your plugin, remove your custom CSS, and check to see if everything is working as expected. Be sure to clear your caches after the update.

    Let us know if you’re still having an issue.

    Thanks!
    Anthony

    Thread Starter Greg Mount

    (@gregmount)

    Confirmed. Thanks!

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Fix post height in Posts block’ is closed to new replies.