Your line
Quote:
For Each hdr In ActiveDocument.Sections(1).Headers
|
is looping through every header in the section, adding the logos to each.
You need to only do it to the first page header:
Quote:
ActiveDocument.Sections(1).Headers(wdHeaderFooterF irstPage)
|