I am wondering if rather than editing the ADMIN CSS on each blog's custom field template screen if there was or could be a way to have one css file they all point to for a global-look. I added some extra classes too and want a uniform-look across all admin screens that use cfts.
http://wordpress.org/extend/plugins/custom-field-template/
Hi Gojsse,
What I usually do now is add a javascript and css files to the Template instructions area, like so:
<script type="text/javascript" language=javascript" src="/wp-content/themes/yourtheme/admin/cft.js"></script>
<link href="/wp-content/themes/yourtheme/admin/cft.css" rel="stylesheet" type="text/css" media="screen" />
So now you can manipulate the CFT how you want.
Hope this helps.