Change the styling of a script page

Issue

Change the styling of a script page

Solution
 

Put this in a JavaScript control on the pages you want to change. You can use full css styling in this:

document.write("<style>body{color:red; font-size:11px;}</style> ");
document.write("<style>.ctext{color:red; font-size:11px;}</style> ");
document.write("<style>.cfield{color:red; font-size:11px;}</style> ");
document.write("<style>.cform{color:red; font-size:11px;}</style> ");
document.write("<style>.cbutton{color:red; font-size:11px;}</style> ");
document.write("<style>input.cform{color:red; font-size:11px;}</style> ");
document.write("<style>textarea.cform{color:red; font-size:11px;}</style> ");
document.write("<style>select.cform{color:red; font-size:11px;}</style> ");