how do i delete the green border in the business card template?

  • Thread starter Thread starter mcsquared65
  • Start date Start date
By default, business cards have no border; perhaps you are referring to the
table gridlines?

--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA
http://word.mvps.org
 
It's an autoshape. Select it and delete it from each row or run the
following macro

For i = ActiveDocument.Shapes.Count To 1 Step -1
With ActiveDocument.Shapes(i)
If .Fill.ForeColor.RGB = RGB(153, 195, 143) Then
.Delete
End If
End With
Next i

--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP

My web site www.gmayor.com

<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 
Back
Top