Support

Account

Home Forums Gutenberg Is it possible to force a block to be only full width? Reply To: Is it possible to force a block to be only full width?

  • This should fix this:

    acf_register_block_type(array(
      'align'           => 'full',
      'supports'        => array(
        'align'        => array('full'),
       'align'        => false,
      ),
    ));

    you need to add the ‘align’ => false, to hide the alignment icon.