Skip to main content
edited body
Source Link
snoopen
  • 598
  • 4
  • 9

As far as I know there's no way to redefine it back to the hyperlink colourtheme colour using the Style Modify dialog. However here are two methods you can try.

VBA Method

Alt + F12F11 to open up VBA Window. Alt + G to open Immediate Window. Then run the following command in the Immediate Window:

ActiveDocument.Styles("Hyperlink").Font.TextColor.ObjectThemeColor = wdThemeColorHyperlink

Style painter method

You can use style painter to copy the formatting back and use that to update the Hyperlink style.

  1. Create a new document type some text, ensure it's formatted as Normal and then format it as hyperlink
  2. Select that text and press Ctrl + Shift + C (this will copy the formatting)
  3. In your target document type some new text to work with, format it as Normal and apply Hyperlink to it
  4. Select the new text and press Ctrl + Shift + P (this will paste the formatting)
  5. If it's not already visible open the Styles Window (Ctrl + Alt + Shift + S)
  6. Locate the Hyperlink style in the style window
  7. Make sure your hyperlink formatted text is still selected
  8. Hover over it and then click the drop down menu and select "Update Hyperlink to Match Selection"
  9. Delete the working text you added in step 3

You should now have the hyperlink text back to it's defaults. Check the other Hyperlink text in your document. If you had any other modifications to the Hyperlink style you can now re-apply those.

As far as I know there's no way to redefine it back to the hyperlink colourtheme colour using the Style Modify dialog. However here are two methods you can try.

VBA Method

Alt + F12 to open up VBA Window. Alt + G to open Immediate Window. Then run the following command in the Immediate Window:

ActiveDocument.Styles("Hyperlink").Font.TextColor.ObjectThemeColor = wdThemeColorHyperlink

Style painter method

You can use style painter to copy the formatting back and use that to update the Hyperlink style.

  1. Create a new document type some text, ensure it's formatted as Normal and then format it as hyperlink
  2. Select that text and press Ctrl + Shift + C (this will copy the formatting)
  3. In your target document type some new text to work with, format it as Normal and apply Hyperlink to it
  4. Select the new text and press Ctrl + Shift + P (this will paste the formatting)
  5. If it's not already visible open the Styles Window (Ctrl + Alt + Shift + S)
  6. Locate the Hyperlink style in the style window
  7. Make sure your hyperlink formatted text is still selected
  8. Hover over it and then click the drop down menu and select "Update Hyperlink to Match Selection"
  9. Delete the working text you added in step 3

You should now have the hyperlink text back to it's defaults. Check the other Hyperlink text in your document. If you had any other modifications to the Hyperlink style you can now re-apply those.

As far as I know there's no way to redefine it back to the hyperlink colourtheme colour using the Style Modify dialog. However here are two methods you can try.

VBA Method

Alt + F11 to open up VBA Window. Alt + G to open Immediate Window. Then run the following command in the Immediate Window:

ActiveDocument.Styles("Hyperlink").Font.TextColor.ObjectThemeColor = wdThemeColorHyperlink

Style painter method

You can use style painter to copy the formatting back and use that to update the Hyperlink style.

  1. Create a new document type some text, ensure it's formatted as Normal and then format it as hyperlink
  2. Select that text and press Ctrl + Shift + C (this will copy the formatting)
  3. In your target document type some new text to work with, format it as Normal and apply Hyperlink to it
  4. Select the new text and press Ctrl + Shift + P (this will paste the formatting)
  5. If it's not already visible open the Styles Window (Ctrl + Alt + Shift + S)
  6. Locate the Hyperlink style in the style window
  7. Make sure your hyperlink formatted text is still selected
  8. Hover over it and then click the drop down menu and select "Update Hyperlink to Match Selection"
  9. Delete the working text you added in step 3

You should now have the hyperlink text back to it's defaults. Check the other Hyperlink text in your document. If you had any other modifications to the Hyperlink style you can now re-apply those.

Switched the two methods making VBA answer first since it's more reliable and not too scary.
Source Link
snoopen
  • 598
  • 4
  • 9

As far as I know there's no way to redefine it back to the hyperlink colourtheme colour using the Style Modify dialog. However here are two methods you can try.

VBA Method

Alt + F12 to open up VBA Window. Alt + G to open Immediate Window. Then run the following command in the Immediate Window:

ActiveDocument.Styles("Hyperlink").Font.TextColor.ObjectThemeColor = wdThemeColorHyperlink

Style painter method

You can use style painter to copy the formatting back and use that to update the Hyperlink style (See also VBA method further below).

Style painter method

  1. Create a new document and formattype some text, ensure it's formatted as Normal and then format it as hyperlink
  2. Select that text and press Ctrl + Shift + C (this will copy the formatting)
  3. In your target document selecttype some new text that is formatted hyperlinkto work with, format it as Normal and apply Hyperlink to it
  4. PressSelect the new text and press Ctrl + Shift + P (this will paste the formatting)
  5. If it's not already visible open the Styles Window (Ctrl + Alt + Shift + S)
  6. Locate the Hyperlink style in the style window
  7. Make sure your hyperlink formatted text is still selected
  8. Hover over it and then click the drop down menu and select "Update Hyperlink to Match Selection"
  9. Delete the working text you added in step 3

You should now have the hyperlink text back to it's defaults. Check the other Hyperlink text in your document. If you had any other modifications to the Hyperlink style you can now re-apply those.

VBA Method

Alt + F12 to open up VBA Window. Alt + G to open Immediate Window. Then run the following command in the Immediate Window:

ActiveDocument.Styles("Hyperlink").Font.TextColor.ObjectThemeColor = wdThemeColorHyperlink

As far as I know there's no way to redefine it back to the hyperlink colourtheme colour using the Style Modify dialog. However you can use style painter to copy the formatting back and use that to update the Hyperlink style (See also VBA method further below).

Style painter method

  1. Create a new document and format some text as hyperlink
  2. Select that text and press Ctrl + Shift + C (this will copy the formatting)
  3. In your target document select some text that is formatted hyperlink
  4. Press Ctrl + Shift + P (this will paste the formatting)
  5. If it's not already visible open the Styles Window (Ctrl + Alt + Shift + S)
  6. Locate the Hyperlink style in the style window
  7. Make sure your hyperlink formatted text is still selected
  8. Hover over it and then click the drop down menu and select "Update Hyperlink to Match Selection"

You should now have the hyperlink text back to it's defaults. If you had any other modifications you can now re-apply those.

VBA Method

Alt + F12 to open up VBA Window. Alt + G to open Immediate Window. Then run the following command in the Immediate Window:

ActiveDocument.Styles("Hyperlink").Font.TextColor.ObjectThemeColor = wdThemeColorHyperlink

As far as I know there's no way to redefine it back to the hyperlink colourtheme colour using the Style Modify dialog. However here are two methods you can try.

VBA Method

Alt + F12 to open up VBA Window. Alt + G to open Immediate Window. Then run the following command in the Immediate Window:

ActiveDocument.Styles("Hyperlink").Font.TextColor.ObjectThemeColor = wdThemeColorHyperlink

Style painter method

You can use style painter to copy the formatting back and use that to update the Hyperlink style.

  1. Create a new document type some text, ensure it's formatted as Normal and then format it as hyperlink
  2. Select that text and press Ctrl + Shift + C (this will copy the formatting)
  3. In your target document type some new text to work with, format it as Normal and apply Hyperlink to it
  4. Select the new text and press Ctrl + Shift + P (this will paste the formatting)
  5. If it's not already visible open the Styles Window (Ctrl + Alt + Shift + S)
  6. Locate the Hyperlink style in the style window
  7. Make sure your hyperlink formatted text is still selected
  8. Hover over it and then click the drop down menu and select "Update Hyperlink to Match Selection"
  9. Delete the working text you added in step 3

You should now have the hyperlink text back to it's defaults. Check the other Hyperlink text in your document. If you had any other modifications to the Hyperlink style you can now re-apply those.

Updated with a VBA method
Source Link
snoopen
  • 598
  • 4
  • 9

As far as I know there's no way to redefine it back to the hyperlink colourtheme colour using the Style Modify dialog. However you can use style painter to copy the formatting back and use that to update the Hyperlink style (See also VBA method further below).

Style painter method

  1. Create a new document and format some text as hyperlink
  2. Select that text and press Ctrl + Shift + C (this will copy the formatting)
  3. In your target document select some text that is formatted hyperlink
  4. Press Ctrl + Shift + P (this will paste the formatting)
  5. If it's not already visible open the Styles Window (Ctrl + Alt + Shift + S)
  6. Locate the Hyperlink style in the style window
  7. Make sure your hyperlink formatted text is still selected
  8. Hover over it and then click the drop down menu and select "Update Hyperlink to Match Selection"

You should now have the hyperlink text back to it's defaults. If you had any other modifications you can now re-apply those.

VBA Method

Alt + F12 to open up VBA Window. Alt + G to open Immediate Window. Then run the following command in the Immediate Window:

ActiveDocument.Styles("Hyperlink").Font.TextColor.ObjectThemeColor = wdThemeColorHyperlink

As far as I know there's no way to redefine it back to the hyperlink colourtheme colour using the Style Modify dialog. However you can use style painter to copy the formatting back and use that to update the Hyperlink style.

  1. Create a new document and format some text as hyperlink
  2. Select that text and press Ctrl + Shift + C (this will copy the formatting)
  3. In your target document select some text that is formatted hyperlink
  4. Press Ctrl + Shift + P (this will paste the formatting)
  5. If it's not already visible open the Styles Window (Ctrl + Alt + Shift + S)
  6. Locate the Hyperlink style in the style window
  7. Make sure your hyperlink formatted text is still selected
  8. Hover over it and then click the drop down menu and select "Update Hyperlink to Match Selection"

You should now have the hyperlink text back to it's defaults. If you had any other modifications you can now re-apply those.

As far as I know there's no way to redefine it back to the hyperlink colourtheme colour using the Style Modify dialog. However you can use style painter to copy the formatting back and use that to update the Hyperlink style (See also VBA method further below).

Style painter method

  1. Create a new document and format some text as hyperlink
  2. Select that text and press Ctrl + Shift + C (this will copy the formatting)
  3. In your target document select some text that is formatted hyperlink
  4. Press Ctrl + Shift + P (this will paste the formatting)
  5. If it's not already visible open the Styles Window (Ctrl + Alt + Shift + S)
  6. Locate the Hyperlink style in the style window
  7. Make sure your hyperlink formatted text is still selected
  8. Hover over it and then click the drop down menu and select "Update Hyperlink to Match Selection"

You should now have the hyperlink text back to it's defaults. If you had any other modifications you can now re-apply those.

VBA Method

Alt + F12 to open up VBA Window. Alt + G to open Immediate Window. Then run the following command in the Immediate Window:

ActiveDocument.Styles("Hyperlink").Font.TextColor.ObjectThemeColor = wdThemeColorHyperlink

Source Link
snoopen
  • 598
  • 4
  • 9
Loading