For Flare 10, PDF Target.
Despite having tried several variations on a theme, I can't figure out what CSS "trick" to use to get my print output's rightside headers to truncate when they're long.
The attached screenshot shows the header of a PDF output page. In the Page Layout, the header frame contains a two-columns table 7.5in wide with each column's width equal to 3.25in. The right side of the header (pink background) contains a Heading1 variable. IF the Heading1 is long, it widens the table cell.
I've tried a variety of things to instead force the table cell to remain fixed in size at 3.25in and truncate the text, all based on the same essential bits of CSS as follows:
Code: Select all
{
background-color: pink; /* Added to make it easy to see that the CSS is being applied */
max-width: 3.25in; /* I've also tried width */
overflow: hidden;
white-space: nowrap;
}- Creating a span and applying it to the text
- Creating a class and applying it to the table cell
- Packaging the text in a DIV
- Several other permutations and variations on a theme
Anyone have the CSS solution to this problem?
Thanks for your help,
Riley
SFO