Hello Nita.....I'd like ask a follow up on this if I may.
Here is one row from a table that I manually applied styles to.
<tr>
<td class="tbl_bodytext">AdverseResultsDelayBizDays</td>
<td class="tbl_bodytext">Sets the number of business days to delay delivering adverse background report results. The default value is 5.</td>
</tr>
I set up a test table row with the same data in Word and followed your instructions.
When I viewed the code in Flare (Version 10.2), here is what I saw.
Notice the <p> and </p> applied inside of each "<td>".
<tr>
<td>
<p>AdverseResultsDelayBizDays</p>
</td>
<td>
<p>Sets the number of business days to delay delivering adverse background report results. The default value is 5.</p>
</td>
</tr>
I applied the style <td class="tbl_bodytext"> to each cell which then showed this code:
<tr>
<td>
<p class="tbl_bodytext">AdverseResultsDelayBizDays</p>
</td>
<td>
<p class="tbl_bodytext">Sets the number of business days to delay delivering adverse background report results. The default value is 5.</p>
</td>
</tr>
Needless to say, my two tables do not display the same.
I can manually remove the "<p>" coding, but that kind of defeats the purpose, eh?
I very well could be overlooking something very simple as I'm by no means a guru at this stuff
Any input would be greatly appreciated.
Thanks in advance.....