How to I permanently change the default HTML style?
GeoffM_20915
New Altair Community Member
If there is no style information applied to an ODS HTML statement then the style.default will be applied. If you define a style called styles.default that is equivalent to a user-defined style then this will be used when no STYLE option is given to ODS HTML.
For example,
PROC TEMPLATE;
* PATH SASUSER.TEMPLAT(update);
DEFINE STYLE styles.default;
CLASS Document / FONT = ('Arial', 12pt);
END;
RUN;
will remove the default styling that Altair SLC ships with, and replace it with a change to the font for the whole document.
By default, this default style template will end up in WORK (if SASUSER option is set), or SASUSER.TEMPLAT (otherwise). Uncomment the PATH statement to force it into SASUSER.TEMPLAT.
0