Usage Note 23320: How can I change the background color of the headers
from gray to another color in ODS HTML output?
You can change the background color of the headers
in the color_list by modifying the value associated with the string "bgA2" or by modifying the style element that render the headers, which is Header.
View output.
proc template;
define style style.colors;
parent=styles.default;
style Body from Document /
background=black;
style Data from Cell /
background=cx8e2323;
style Header from HeadersAndFooters /
/* change to orange */
background=cxcd7f32;
end;
run;
See also the full PROC TEMPLATE FAQ and Concepts.
Operating System and Release Information
*
For software releases that are not yet generally available, the Fixed
Release is the software release in which the problem is planned to be
fixed.
| Type: | Usage Note |
| Priority: | low |
| Topic: | Third Party ==> Output ==> HTML SAS Reference ==> ODS (Output Delivery System)
|
| Date Modified: | 2003-09-22 11:28:05 |
| Date Created: | 2003-08-06 15:54:13 |