![]() |
#1
|
|||
|
|||
![]()
Hi all. This problem is causing me some serious time wasting. I am formatting a spanish version of a book and have to copy/match to the format of the english version.
I'm getting this strange white background on some words that are in text boxes that we use with gray backgrounds. I have tried erasing formatting of the selected word, and removing any highlighting, to no avail. My only solution is to manually type the words over again (bleh) My idea is this has something to do with the fact the text I am copying is designated to be spellchecked "spanish" and the text box (that I copied from the english version) has fields designated as "english". Not sure, but this is driving me nuts. Thanks and see pics below: ![]() |
#2
|
||||
|
||||
![]()
Hi giozane,
I can't tell from the images - can you post a document containing some affected content?
__________________
Cheers, Paul Edstein [Fmr MS MVP - Word] |
#3
|
|||
|
|||
![]()
Hi, here's an excerpt from the book showing one box that has been dealt with (no white shading) and the evil one that I will have to rewrite everything to get rid of the white shading behind the letters.
Thank you for your time on this! Would be a win to figure this out!! GG ![]() |
#4
|
||||
|
||||
![]()
Hi giozane,
The text with the white background in the cells has had a white background applied, whilst the other text has no background. The easiest way to fix many textboxes is with a macro: Code:
Sub FixTextBoxText() Dim Shp As Shape For Each Shp In ActiveDocument.Shapes If Shp.Type = msoTextBox Then Shp.TextFrame.TextRange.Font.Shading.BackgroundPatternColorIndex = 0 End If Next End Sub
__________________
Cheers, Paul Edstein [Fmr MS MVP - Word] |
![]() |
Tags |
background, text, white |
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
![]() |
Samantha Jean | Word | 7 | 02-09-2017 02:22 AM |
black text randomly changing to white when run macro | G DeBree | PowerPoint | 0 | 03-16-2011 09:23 AM |
Text box background MUST be white? | Gummo | Drawing and Graphics | 0 | 07-12-2010 01:35 PM |
Problem with Developer Form -- Check Boxes and Text Boxes | PCC | Word | 1 | 05-16-2009 05:22 AM |
Text Highlighting in Yellow ??? | mark4man | Publisher | 0 | 12-15-2005 06:46 PM |