siga
4/17/2017 - 4:21 PM

Customize the color of Dynamik ACE editor commented code, change it to grey (instead of green). Goes to Dynamik Custom - Functions or the sk

Customize the color of Dynamik ACE editor commented code, change it to grey (instead of green). Goes to Dynamik Custom - Functions or the skin PHP file, whatever you prefer.

//* Customize the color of ACE commented code, change it to grey
add_action('admin_head', 'custom_ace_css');
function custom_ace_css() {
  echo '<style>
    .ace-tm .ace_comment {
    color: #b2b2b2;
    }
  </style>';
}