Unicode Bullets Not Appearing in PDF

This forum is for all Flare issues related to styles, stylesheets and XML.
Post Reply
hfroemel
Jr. Propeller Head
Posts: 6
Joined: Mon Feb 03, 2014 9:57 am

Unicode Bullets Not Appearing in PDF

Post by hfroemel »

Hello, I'm having an issue where my bullet characters are appearing in Flare, but they're blank when I generate a PDF. Here's an example of a style:

Code: Select all

p.SafetyBullet
{
	font-family: "Arial";
	font-size: 11pt;
	font-style: normal;
	font-weight: normal;
	color: #000000;
	text-decoration: none;
	margin-top: 13px;
	margin-bottom: 13px;
	mc-hyphenate: never;
	page-break-inside: avoid;
	mc-auto-number-format: '\25b6';
	mc-auto-number-offset: 25px;
	mc-auto-number-class: zformatSafetyBullet;
	mc-auto-number-position: outside-head;
	text-indent: 0px;
	margin-left: 48px;
	vertical-align: 2px;
}

span.zformatSafetyBullet
{
	font-family: Unicode;
	font-size: 13pt;
	font-weight: normal;
	color: #000000;
	margin-right: 10px;
	text-align: right;
	width: 10px;
	display: none;
	vertical-align: -2px;
}
hfroemel
Jr. Propeller Head
Posts: 6
Joined: Mon Feb 03, 2014 9:57 am

Re: Unicode Bullets Not Appearing in PDF

Post by hfroemel »

In case anyone ever runs across this. The answer was to replace:

Code: Select all

display: none;
in the span with:

Code: Select all

display: inline-block;
Post Reply