Reply
 
Thread Tools Display Modes
  #1   Report Post  
Posted to microsoft.public.word.pagelayout
stevenpa stevenpa is offline
external usenet poster
 
Posts: 3
Default Updating styles in footnotes

Word 2003

I am in the process of updating the styles in a Word document to include
more eye-pleasing typefaces. I open up the Formatting and Styles... sidebar
and change all of the custom styles to fonts, sizes, etc. that I want, and
they all update accordingly except for footnotes. Actually, I can't access
any styles for footnotes in the sidebar, and so have to go to Format
-Style... from the menu bar.

After calling up the Styles dialogue, I am given three options for
footnotes: Footers (paragraph style), Footnote Reference (character style),
and Footnote Text (paragraph style). I've updated them all accordingly, but
Word refuses to update the styles in the document itself! What I have to do
is highlight each footnote reference in both the body and the footer as well
as the footnote text in the footer and apply the updated style individually.

My question is: why does the body update without a hitch, but the footnotes
don't? And how can I solve this? I've tried creating a new template,
working with the existing template, and nothing works.
  #2   Report Post  
Posted to microsoft.public.word.pagelayout
stevenpa stevenpa is offline
external usenet poster
 
Posts: 3
Default Updating styles in footnotes

I should also mention that the footnotes are linked to words that are in a
two-column table, so I have one footnote reference in the table, one footnote
reference in the footer at the bottom of the page (not in the table itself),
and then of course the footnote text in the footer too.
  #3   Report Post  
Posted to microsoft.public.word.pagelayout
Stefan Blom Stefan Blom is offline
external usenet poster
 
Posts: 8,428
Default Updating styles in footnotes

If you are sure that the Footnote Text style is applied to the
text of footnotes, then I'd say that their font formatting has been
overridden. You can reset it to style by selecting the text and
pressing Ctrl+SpaceBar. If there are many footnotes, you may not want
to do this manually. Instead, you could use Find and Replace: For
"Find what," specify the Footnote Text style and for "Replace with,"
specify the Default Paragraph Font style. Click Replace All.

Then run the following macro to re-apply the Footnote Reference
character style to the footnote numbers:

Sub ApplyFnRefStyle()

Dim f As Footnote
For Each f In ActiveDocument.Footnotes
f.Reference.Style = wdStyleFootnoteReference
f.Range.Paragraphs(1).Range.Characters(1).Style = _
wdStyleFootnoteReference
Next f

End Sub

--
Stefan Blom
Microsoft Word MVP


"stevenpa" wrote in message
...
Word 2003

I am in the process of updating the styles in a Word document to

include
more eye-pleasing typefaces. I open up the Formatting and Styles...

sidebar
and change all of the custom styles to fonts, sizes, etc. that I

want, and
they all update accordingly except for footnotes. Actually, I can't

access
any styles for footnotes in the sidebar, and so have to go to Format
-Style... from the menu bar.

After calling up the Styles dialogue, I am given three options for
footnotes: Footers (paragraph style), Footnote Reference (character

style),
and Footnote Text (paragraph style). I've updated them all

accordingly, but
Word refuses to update the styles in the document itself! What I

have to do
is highlight each footnote reference in both the body and the footer

as well
as the footnote text in the footer and apply the updated style

individually.

My question is: why does the body update without a hitch, but the

footnotes
don't? And how can I solve this? I've tried creating a new

template,
working with the existing template, and nothing works.








  #4   Report Post  
Posted to microsoft.public.word.pagelayout
stevenpa stevenpa is offline
external usenet poster
 
Posts: 3
Default Updating styles in footnotes

If you are sure that the Footnote Text style is applied to the
text of footnotes, then I'd say that their font formatting has been
overridden.


Yes, I agree. In the styles dialogue (i.e. Format | Style), the Footnote
Text style has clearly been updated to Arial, for example, but the text in
the document itself is still Times, again for example, until I manually apply
the style to each footnote individually in both the footer and main text area.

Where the style is being over-ridden is anyone's guess. I've made new
templates that strip all the styles off, copied the text into a new document
based on this stripped down template, chosen Apply Destination Formatting,
and the footnotes still require manual updating where the main body text does
not.


You can reset it to style by selecting the text and
pressing Ctrl+SpaceBar. If there are many footnotes, you may not want
to do this manually. Instead, you could use Find and Replace: For
"Find what," specify the Footnote Text style and for "Replace with,"
specify the Default Paragraph Font style. Click Replace All.


This helped greatly, thanks.

Then run the following macro to re-apply the Footnote Reference
character style to the footnote numbers:

Sub ApplyFnRefStyle()

Dim f As Footnote
For Each f In ActiveDocument.Footnotes
f.Reference.Style = wdStyleFootnoteReference
f.Range.Paragraphs(1).Range.Characters(1).Style = _
wdStyleFootnoteReference
Next f

End Sub


Again, very helpful! I don't normally use Macros, but this is one I'll be
using in the future for sure!

I don't want to close this topic just yet (maybe in a day or two) in case
there are other less Macro-related fixes for my query.
  #5   Report Post  
Posted to microsoft.public.word.pagelayout
Stefan Blom Stefan Blom is offline
external usenet poster
 
Posts: 8,428
Default Updating styles in footnotes

The macro is needed because clearing direct font formatting also
clears the character styles (unfortunately); I believe Word 2007 has
more options.

If you need assistance with the macro, see
http://www.gmayor.com/installing_macro.htm.

Paste Options are described at
http://www.shaunakelly.com/word/styl...ionsWorks.html (not
sure that it sheds any light on the particular problem you are
describing, though).

--
Stefan Blom
Microsoft Word MVP


"stevenpa" wrote in message
news
If you are sure that the Footnote Text style is applied to the
text of footnotes, then I'd say that their font formatting has

been
overridden.


Yes, I agree. In the styles dialogue (i.e. Format | Style), the

Footnote
Text style has clearly been updated to Arial, for example, but the

text in
the document itself is still Times, again for example, until I

manually apply
the style to each footnote individually in both the footer and main

text area.

Where the style is being over-ridden is anyone's guess. I've made

new
templates that strip all the styles off, copied the text into a new

document
based on this stripped down template, chosen Apply Destination

Formatting,
and the footnotes still require manual updating where the main body

text does
not.


You can reset it to style by selecting the text and
pressing Ctrl+SpaceBar. If there are many footnotes, you may not

want
to do this manually. Instead, you could use Find and Replace: For
"Find what," specify the Footnote Text style and for "Replace

with,"
specify the Default Paragraph Font style. Click Replace All.


This helped greatly, thanks.

Then run the following macro to re-apply the Footnote Reference
character style to the footnote numbers:

Sub ApplyFnRefStyle()

Dim f As Footnote
For Each f In ActiveDocument.Footnotes
f.Reference.Style = wdStyleFootnoteReference
f.Range.Paragraphs(1).Range.Characters(1).Style = _
wdStyleFootnoteReference
Next f

End Sub


Again, very helpful! I don't normally use Macros, but this is one

I'll be
using in the future for sure!

I don't want to close this topic just yet (maybe in a day or two) in

case
there are other less Macro-related fixes for my query.








Reply
Thread Tools
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Stop updating styles automatically JethroUK© Microsoft Word Help 4 August 18th 06 05:30 PM
Style lists in the Styles and Formatting task pane Adrian Formatting Long Documents 5 March 3rd 06 08:36 PM
Custom Styles Questions Kim Microsoft Word Help 1 February 10th 06 10:09 PM
stop word from updating defined styles lots of questions Microsoft Word Help 4 February 1st 06 01:14 AM
Footnotes and styles Fred Goldman Microsoft Word Help 4 February 22nd 05 05:25 PM


All times are GMT +1. The time now is 11:29 PM.

Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 Microsoft Office Word Forum - WordBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Word"