View Single Post
 
Old 03-07-2017, 01:46 AM
Stefan Blom's Avatar
Stefan Blom Stefan Blom is offline Windows 10 Office 2013
Moderator
 
Join Date: Aug 2011
Posts: 4,036
Stefan Blom is a name known to allStefan Blom is a name known to allStefan Blom is a name known to allStefan Blom is a name known to allStefan Blom is a name known to allStefan Blom is a name known to all
Default

Run the following macro and see if it fixes the problem:

Code:
Sub ResetListFontFormatting()
'Macro created by MVP Stefan Blom, March 2017
'Originally by MVP Doug Robbins
Dim LT as ListTemplate
Dim i As ListLevel
For each LT in ActiveDocument.ListTemplates
   For Each i in LT.ListLevels
      i.Font.Reset
   Next i
Next LT
End Sub
For assistance, see http://www.gmayor.com/installing_macro.htm.
__________________
Stefan Blom
Microsoft Word MVP

Microsoft 365 apps for business
Windows 11 Professional
Reply With Quote