Guest User

Untitled

a guest
Sep 18th, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. #poststuff #post-body.columns-2 {
  2. margin-right: 300px;
  3. dispay:flex important;
  4. flex-direction:column !important;
  5. }
  6.  
  7. function wpdocs_selectively_enqueue_admin_script( $hook ) {
  8. if ( 'toplevel_page_kita-general-settings' != $hook ) {
  9. return;
  10. }
  11. // wp_enqueue_script( 'my_custom_script', plugin_dir_url( __FILE__ ) . 'myscript.js', array(), '1.0' );
  12. wp_enqueue_style( 'kita_options_page', get_template_directory_uri() . '/css/kita-admin.css' );
  13.  
  14.  
  15. }
  16. add_action( 'admin_enqueue_scripts', 'wpdocs_selectively_enqueue_admin_script' );
Add Comment
Please, Sign In to add comment