Support

Account

Home Forums Gutenberg Why are spacing options not appearing for my ACF block? Reply To: Why are spacing options not appearing for my ACF block?

  • For anyone who might land on this thread, I managed to figure this out: I initially thought this issue might be related to using ACF blocks (as opposed to native blocks) but it actually derives from the theme, specifically the need for a theme.json file. I created a theme.json file at the root of my theme folder, added the following settings, and those options (spacing, dimensions, etc.) are now appearing:

    
    {
    	"version": 2,
    	"settings": {
    		"appearanceTools": true,
    		"layout": {
                "contentSize": "1170px",
                "wideSize": "1440px"
            },
    		"spacing": {
    			"margin": true,
    			"padding": true
    		}
    	}
    }