diff --git a/includes/blocks/header/class-kadence-blocks-header-column-block.php b/includes/blocks/header/class-kadence-blocks-header-column-block.php index 9fec2d74e..3bf3b8c25 100644 --- a/includes/blocks/header/class-kadence-blocks-header-column-block.php +++ b/includes/blocks/header/class-kadence-blocks-header-column-block.php @@ -96,6 +96,12 @@ public function build_css( $attributes, $css, $unique_id, $unique_style_id ) { */ public function build_html( $attributes, $unique_id, $content, $block_instance ) { if ( ! empty( $attributes['location'] ) && ! in_array( $attributes['location'], array( 'tablet-left', 'tablet-right', 'center-left', 'center', 'center-right' ) ) ) { + + // If no center content, return empty div to keep layout consistent. + if( $attributes['location'] === 'tablet-center' && empty( $content ) ) { + return '
'; + } + return $content; }