Turning active hyperlinks back to blue

155,102

Solution 1

Resetting the style of all Hyperlinks back to default requires a VBA Macro.

Code:

Sub RestoreHyperlinkStyle()
    Dim hl As Hyperlink
    For Each hl In ActiveDocument.Hyperlinks
        hl.Range.Style = wdStyleHyperlink
    Next
End Sub

Steps:

  1. Press Alt+F11 to open Microsoft Visual Basic for Applications.
  2. Double-click on "ThisDocument".
  3. Paste the code from the block above into the editor.
  4. Press F5 to run the code.
  5. Delete the code from the editor window to prevent Word from saving with Macros.

Solution 2

But sometimes you just want to set one hyperlink back to blue. For example: You create an email in Outlook (same word editor) and paste a hyperlink into it. You click on the hyperlink to make sure it's going where you intended - that turns it purple. You don't want to send the email with a purple hyperlink.

So, just right-click on the hyperlink and from the context menu select "Edit Hyperlink". It brings up the edit dialog box. Click on "OK". The hyperlink is returned to it's original blue state. Simple and quick.

Solution 3

Try the following, it works in Word 2013 and I think it should work in 2010 as well:

  • From the Home tab on the ribbon, choose Find -> Advanced Find...
  • Leave Find what blank.
  • At the bottom, choose Format -> Style...
  • Choose Hyperlink and press OK to close the dialog and return to the previous one.
  • Choose Find In -> Main Document
  • All the hyperlinks will be highlighted.
  • From the ribbon, choose Styles -> Clear Formatting. The default colour will be restored.

enter image description here

Solution 4

Similar to James' solution, but this reassigns the style vs. clearing formatting...

Assuming the links are still styled as Hyperlinks (which they should be if all you did was change the Font colour):

  • From the Home tab on the ribbon, choose Replace (or Ctrl+H).
  • Click the More >> button to expand the dialog.
  • Click on the blank Find what field.
  • At the bottom, choose Format -> Style...
  • Choose Hyperlink and press OK to close the dialog and return to the previous one.
  • Click on the blank Replace with field.
  • At the bottom, choose Format -> Style...
  • Choose Hyperlink and press OK to close the dialog and return to the previous one.
  • Click Replace All.

Find/Replace Dialog

Solution 5

There is a simple way to do this.

  1. On the document you want to make your hyperlinks back to normal blue, press Shift + Ctrl + Alt + S.
  2. A box will appear (Styles). Scroll the box content to find FollowedHyperlink.
  3. Click on the little drop-down triangle. On the drop-down menu click on Update FollowedHyperlink to match selection.

Just that! The beautiful blue color is back to all your hyperlinks. (Consider that if you ever click on hyperlinks later on this document, the color will not change anymore.)

Share:
155,102

Related videos on Youtube

Rox
Author by

Rox

Updated on September 18, 2022

Comments

  • Rox
    Rox over 1 year

    I selected all the text in a document and colored it all black (which is what I wanted to do). I didn't realize that the document had some hyperlinks in it (several pages in, in a very long document), so now I can't tell where the hyperlinks are, although I know it's working. Since there are many links, how can I turn the links back to underlined blue (as they should be) without having to go to each one and turning it blue?

    • DavidPostill
      DavidPostill over 8 years
      Have you tried Edit > Undo (Ctrl+Z)?
    • Lightness Races in Orbit
      Lightness Races in Orbit over 8 years
      What's the meaning of an active hyperlink, specifically?
  • Steven
    Steven over 8 years
    Caveat: This would not work if styles were removed (Select text, Ctrl+Space)
  • Pedram
    Pedram over 6 years
    On a Mac it's Command + Option + Shift + S
  • Scott - Слава Україні
    Scott - Слава Україні over 6 years
    ‘‘… there are many links [in the document]; how can I turn the links back to underlined blue … without having to go to each one …?’’
  • Brian Wylie
    Brian Wylie over 4 years
    This is the best answer (for one or two links): The instructions on Mac "Insert... Hyperlink... OK"