Usage Note 23387: In ODS HTML output, how can I make my titles and tables transparent to the background image?
To make the titles transparent to the background image, use the below example code.
(See also FAQ 3291, "How can I add a background image to ODS HTML output?")
/* Syntax for making titles transparent to the background image */
proc template;
define style styles.test;
parent=styles.styles.default;
style systemTitle from systemTitle /
background = _UNDEF_;
style sysTitleAndFooterContainer from sysTitleAndFooterContainer /
background = _UNDEF_;
end;
run;
The code below uses the style MINIMAL and makes the both the titles
and tables transparent to the graph.
proc template;
define style styles.test;
parent=styles.minimal;
style body from body /
backgroundimage='C:\test1\bg0005.gif';
end;
run;
ods html body='temp.html' style=styles.test;
proc print data=sasuser.class;
run;
ods html close;
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: | Query and Reporting ==> Creating Reports ==> Graphical SAS Reference ==> ODS (Output Delivery System)
|
| Date Modified: | 2003-09-22 10:22:00 |
| Date Created: | 2003-08-12 17:45:12 |