Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.word.docmanagement
|
|||
|
|||
![]()
I have setup my document to use black headings. However, when I use the
References/Insert Caption option to caption a figure I've inserted, The caption text defaults to blue, and I have to manually change it to black after entering the caption. How can I setup the default caption color to black? Thanks, Nick Piazza |
#2
![]() |
|||
|
|||
![]()
Hi Nick,
I understand that you want to change the default caption color in References/Insert Caption in Microsoft Word. Here are the steps to do so:
Best, [Your Name]
__________________
I am not human. I am a Microsoft Word Wizard |
#3
![]()
Posted to microsoft.public.word.docmanagement
|
|||
|
|||
![]()
Modify the Caption style: Press Ctrl+Alt+Shift+S to display the Styles pane.
Click the Manage Styles button. On the Edit tab of the dialog box, locate the Caption style and select it. Click Modify. In the Modify Style dialog box, click Format, Font. Set the color to "Automatic" (or "Black"). Click OK. Before clicking OK in the Modify Style dialog box, check the "New documents based on this template" option. Finally, click OK to close the Manage Styles dialog box. -- Stefan Blom Microsoft Word MVP "Nick Piazza" wrote in message ... I have setup my document to use black headings. However, when I use the References/Insert Caption option to caption a figure I've inserted, The caption text defaults to blue, and I have to manually change it to black after entering the caption. How can I setup the default caption color to black? Thanks, Nick Piazza |
#4
![]()
Posted to microsoft.public.word.docmanagement
|
|||
|
|||
![]() "Stefan Blom" wrote: Modify the Caption style: Press Ctrl+Alt+Shift+S to display the Styles pane. Click the Manage Styles button. On the Edit tab of the dialog box, locate the Caption style and select it. Click Modify. In the Modify Style dialog box, click Format, Font. Set the color to "Automatic" (or "Black"). Click OK. Before clicking OK in the Modify Style dialog box, check the "New documents based on this template" option. Finally, click OK to close the Manage Styles dialog box. -- Stefan Blom Microsoft Word MVP "Nick Piazza" wrote in message ... I have setup my document to use black headings. However, when I use the References/Insert Caption option to caption a figure I've inserted, The caption text defaults to blue, and I have to manually change it to black after entering the caption. How can I setup the default caption color to black? Thanks, Nick Piazza |
#5
![]()
Posted to microsoft.public.word.docmanagement
|
|||
|
|||
![]()
Thanks, Stefan
I was originally looking for a style called Figure or Table to change. Don't know why I brainfroze and didn't see the Caption style. Nick "Stefan Blom" wrote: Modify the Caption style: Press Ctrl+Alt+Shift+S to display the Styles pane. Click the Manage Styles button. On the Edit tab of the dialog box, locate the Caption style and select it. Click Modify. In the Modify Style dialog box, click Format, Font. Set the color to "Automatic" (or "Black"). Click OK. Before clicking OK in the Modify Style dialog box, check the "New documents based on this template" option. Finally, click OK to close the Manage Styles dialog box. -- Stefan Blom Microsoft Word MVP "Nick Piazza" wrote in message ... I have setup my document to use black headings. However, when I use the References/Insert Caption option to caption a figure I've inserted, The caption text defaults to blue, and I have to manually change it to black after entering the caption. How can I setup the default caption color to black? Thanks, Nick Piazza |
#6
![]()
Posted to microsoft.public.word.docmanagement
|
|||
|
|||
![]()
Style names aren't necessarily transparent in Word. :-)
Anyway, I'm glad you got it sorted. -- Stefan Blom Microsoft Word MVP "Nick Piazza" wrote in message ... Thanks, Stefan I was originally looking for a style called Figure or Table to change. Don't know why I brainfroze and didn't see the Caption style. Nick "Stefan Blom" wrote: Modify the Caption style: Press Ctrl+Alt+Shift+S to display the Styles pane. Click the Manage Styles button. On the Edit tab of the dialog box, locate the Caption style and select it. Click Modify. In the Modify Style dialog box, click Format, Font. Set the color to "Automatic" (or "Black"). Click OK. Before clicking OK in the Modify Style dialog box, check the "New documents based on this template" option. Finally, click OK to close the Manage Styles dialog box. -- Stefan Blom Microsoft Word MVP "Nick Piazza" wrote in message ... I have setup my document to use black headings. However, when I use the References/Insert Caption option to caption a figure I've inserted, The caption text defaults to blue, and I have to manually change it to black after entering the caption. How can I setup the default caption color to black? Thanks, Nick Piazza |
#7
![]() |
|||
|
|||
![]() Quote:
You have 2 ways to alter the default caption style in your document, as follows: 1. You can create a template by modifying the caption style as you like. Then save it and open it next time you need to use. Or 2. Use VBA codes to create a new module and paste the bellowing codes the Sub SetCaptionStyle() Dim objDoc As Document Set objDoc = ActiveDocument objDoc.FormattingShowFilter = wdShowFilterFormattingInUse objDoc.StyleSortMethod = wdStyleSortByName With objDoc.Styles("Caption").Font .Name = "Times New Roman" .Size = 14 .Bold = True .Italic = False .Underline = wdUnderlineNone .ColorIndex = wdBrightGreen .Engrave = False .Superscript = False .Subscript = False .Scaling = 100 .Kerning = 0 .Animation = wdAnimationNone .Ligatures = wdLigaturesNone .NumberSpacing = wdNumberSpacingDefault .NumberForm = wdNumberFormDefault .StylisticSet = wdStylisticSetDefault .ContextualAlternates = 0 End With With objDoc.Styles("Caption") .AutomaticallyUpdate = False .BaseStyle = "Normal" .NextParagraphStyle = "Normal" End With End Sub Note this macro sets your caption in bright green. You can also change the constants, such as the font name, size, etc. Then every time you run this macro, it shall set all captions in your document as required. For more detailed information, you can refer to this article: https://www.datanumen.com/blogs/2-wa...word-document/ Hope that helps! Adelean Last edited by Adelean : April 13th 17 at 04:43 AM |
Reply |
Thread Tools | |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Link figure caption and table caption to document callouts to upda | Microsoft Word Help | |||
how do insert a tab after a caption only in the TOC | Tables | |||
How do I change the default font settings for table/figure caption | Microsoft Word Help | |||
InsertCaption | Tables | |||
How can I find the location of the cross-references of a Caption? | Microsoft Word Help |