WPTitle and WPHeader are the styles we needed to modify. WPTitle is the
left cell of the two-cell WP header and the one we were most interested in.
WPHeader includes the WPTitle cell and the cell for the drop-down menu.
Operationally, we:
1. Renamed sps.css to sps-ms.css; ows.sps to ows-ms.css and owspers.css to owspers-ms.css
2. Copied the specific classes we needed to modify to client-local.css and modified them there
3. Then used the following batch file to concatenate sps-local.css to each
of the MS css files:
copy sps-ms.css+client-local.css sps.css
copy ows-ms.css+client-local.css ows.css
copy owspers-ms.css+client-local.css owspers.css
This approach allowed us to:
1. Leave the MS css files intact and unchanged - just renamed.
2. Localize all of our CSS changes to a single file: client-local.css
3. From a maintenance, deployment and supportability perspective, it was a simple matter of editing client-local.css and the running the batch file to recreate sps.css, ows.css and owspers.css.