Usage Note 23377: In ODS HTML output, how can I change the foreground color of the titles and footnotes separately?
The string "fgA" is associated with both the titles
and footnotes in the color_list, so modifying it will affect both titles and footnotes. Instead, to specify one color for the titles and another for the footnotes, you must modify
the style elements SystemTitle and SystemFooter directly.
View output.
proc template;
define style Styles.colors;
parent=styles.default;
style Body from Document /
background=black;
style Data from Cell /
background=cx8e2323;
style Header from HeadersAndFooters /
background=cxcd7f32;
style Table from Output /
background=black
bordercolor=cxb5a642;
style SystemTitle from TitlesAndFooters /
/* setting foreground and background */
foreground=cxb5a642
background=cxcd7f32;
style SystemFooter from TitlesAndFooters /
foreground=gold
background=red;
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-30 15:41:45 |
| Date Created: | 2003-08-11 14:37:38 |