Frame

The Frame extension adds a border, corner radius and shadow to any WordPress block. Each of the three has its own hover state, so a card can gain a shadow when the pointer reaches it. Values can differ per screen size.

Available Tools

  • Border
  • Border Radius
  • Shadow

Enable in 3rd-party blocks

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