Skip to content

Instantly share code, notes, and snippets.

@radarin
Last active May 14, 2022 16:28
Show Gist options
  • Select an option

  • Save radarin/340a23d4708f1878d6a638735409590c to your computer and use it in GitHub Desktop.

Select an option

Save radarin/340a23d4708f1878d6a638735409590c to your computer and use it in GitHub Desktop.
Wordpress Customizer Steuerung verbreitern
<?php
/* CSS im Cusomizer erweitern, Steuerelemente verbreitern */
add_action( 'customize_controls_print_styles', 'customizer_width', 999 );
function customizer_width() {
?>
<style>
#customize-controls {
width:400px;
max-width:400px;
}
.wp-full-overlay.expanded {
margin-left: 400px;
}
</style>
<?php
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment