Skip to content

Instantly share code, notes, and snippets.

@tdmrhn
Created July 20, 2022 18:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tdmrhn/4bc1c4b05c2756410703bd85ab0d1d77 to your computer and use it in GitHub Desktop.
Save tdmrhn/4bc1c4b05c2756410703bd85ab0d1d77 to your computer and use it in GitHub Desktop.
Blocksy Remove Customizer Preview Iframe Padding
<?php
add_action( 'print_head_scripts', function () {
echo '<style>';
echo '.preview-desktop #customize-preview { padding: 0 !important }';
echo '.preview-desktop #customize-preview iframe { width: 100%; height: 100% }';
echo '</style>';
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment