wp-v4-greater.php
21 lines
| 1 | <style> |
| 2 | |
| 3 | #wpcontent, #wpfooter { |
| 4 | margin-left: <?php echo esc_html( $custom_width ); ?>; |
| 5 | } |
| 6 | #adminmenuback, #adminmenuwrap, #adminmenu, #adminmenu .wp-submenu { |
| 7 | width: <?php echo esc_html( $custom_width ); ?>; |
| 8 | } |
| 9 | #adminmenu .wp-submenu { |
| 10 | left: <?php echo esc_html( $custom_width ); ?>; |
| 11 | } |
| 12 | #adminmenu .wp-not-current-submenu .wp-submenu, .folded #adminmenu .wp-has-current-submenu .wp-submenu { |
| 13 | min-width: <?php echo esc_html( $custom_width ); ?>; |
| 14 | } |
| 15 | |
| 16 | /* WooCommerce header fix */ |
| 17 | .woocommerce-layout__header { |
| 18 | width: calc(100% - <?php echo esc_html( $custom_width ); ?>); |
| 19 | } |
| 20 | |
| 21 | </style> |