Last active
May 14, 2022 16:28
-
-
Save radarin/340a23d4708f1878d6a638735409590c to your computer and use it in GitHub Desktop.
Wordpress Customizer Steuerung verbreitern
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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