Hi Marilyn,
Assuming that you have already created a document object, say wdDoc, and the
header and footer are in the first (only) section in the document, then you
would use:
With wdDoc.Sections(1)
.Headers(wdHeaderFooterPrimary).Range.Font.Size = 14
.Headers(wdHeaderFooterPrimary).Range.Font.Italic = True
.Headers(wdHeaderFooterPrimary).Range.Font.Bold = True
.Footers(wdHeaderFooterPrimary).Range.Font.Size = 14
.Footers(wdHeaderFooterPrimary).Range.Font.Italic = True
.Footers(wdHeaderFooterPrimary).Range.Font.Bold = True
End With
Please post any further questions or followup to the newsgroups for the
benefit of others who may be interested. Unsolicited questions forwarded
directly to me will only be answered on a consulting basis.
Hope this helps
Doug Robbins - Word MVP