Good day fellow programmers,
I have been searching a solution to this problem the entire day and I am not able to find a solution to my problem :).
The problem that I am having is in the footer section of the RTF file the section break size is 12pt and I want it to be 9pt. for some reason the header section is fine and coming as 9pt. its only the footer section where I am having this problem.
I am using Proc Template and all my fontsizes are define as 9pt in there.
I am using the following code to generate my RTF files.
ods rtf file="C:\myfolder\myfilename.rtf" bookmark = "xyz.mrk" style = mystyle;
ods tagsets.default file=outxml(url=none) gpath="output path";
Proc template code:
REPLACE FONTS / 'titlefont2' = ("Times New Roman", 9pt)
'titlefont' = ("Times New Roman", 9pt)
'Strongfont' = ("Times New Roman", 9pt)
'EmphasisFont' = ("Times New Roman", 9pt)
'FixedEmphasisFont' = ("Times New Roman", 2pt)
'FixedStrongFont' = ("Times New Roman", 2pt)
'FixedHeadingFont' = ("Times New Roman", 2pt)
'BatchFixedFont' = ("SAS Monospace,Times New Roman", 2pt)
'FixedFont' = ("Times New Roman", 2pt)
'headingEmphasisFont' = ("Times New Roman", 9pt)
'headingFont' = ("Times New Roman", 9pt)
'docFont' = ("Times New Roman", 9pt)
'footFont' = ("Times New Roman", 9pt);
Any help will be much appreciated.
I have attached a screenshot of the section breaks I am talking about.

Cheers Brian.