View Single Post
 
Old 09-14-2016, 07:22 AM
Cosmo Cosmo is offline Windows Vista Office 2007
Competent Performer
 
Join Date: Mar 2012
Posts: 240
Cosmo is on a distinguished road
Default

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)
Reply With Quote