Support

Account

Home Forums General Issues version 5.11 removed alignment classes from blocks Reply To: version 5.11 removed alignment classes from blocks

  • I figured it out… with version 5.11 I have to have the following code in my block code, prior to 5.11 this was not required for whatever reason.

    if( !empty($block['align']) ) {
        $className .= ' align' . $block['align'];
    }