Position

When working with Ghost Kit and Core blocks, you may need to change the position of a block to either absolute or fixed. Additionally, you might want to move the block with an offset.

Available Tools

  • Position
  • Distance
  • Width
  • Height
  • Min Max Width
  • Min Max Height
  • zIndex

Enable in 3rd-party blocks

<?php
registerBlockType( 'my/block', {
    title: 'My block',
    supports: {
        ghostkit: {
            position: true,
        }
    },
    ...
} );
Was this page helpful?