Redefine Hyperlink Color in MS Word Mac 2011

Joined
Aug 22, 2008
Messages
56
Reaction score
0
Points
6
How do you change the default colors for a hyperlink in MS Word for Mac. I believe the default colors are blue and purplish pink with the underline.

I know I can change the initial color and remove the underline via Style > Modify > Font. But is there a way to modify the color link in other states (e.g. link, visited, hover, active)?
 
Joined
Sep 29, 2015
Messages
1
Reaction score
0
Points
1
For Mac, you can create a Macro to change the hyperlink color.

Code:
    Sub Linkcolor()
     With ActiveDocument.Styles("Hyperlink").Font
        .Name = ""
        .Underline = wdUnderlineSingle
        .Color = RGB(80, 200, 210)
      End With
      ActiveDocument.Styles("Hyperlink").BaseStyle = "Default Paragraph Font"
    End Sub

And then save it as a template with .docm. Then you can save it as a .docx.
 

Shop Amazon


Shop for your Apple, Mac, iPhone and other computer products on Amazon.
We are a participant in the Amazon Services LLC Associates Program, an affiliate program designed to provide a means for us to earn fees by linking to Amazon and affiliated sites.
Top