Skip to main content
GrossTonnage
Participating Frequently
August 7, 2014
Question

Multi-channel publishing and reference pages

  • August 7, 2014
  • 4 replies
  • 1384 views

Hi all,

I'm beginning to dig into FM12 multi-channel publishing. I have stripped down my unstructured template to a more minimalist model in order to flex better to multiple outputs. My current document template has several ANSI-based alert styles (Danger, Warning, etc.) that reference heading images in the reference pages. These heading images do not show up when I publish to HTML5. The header images are important to these styles, but I am loathe to add them manually to each instance, obviously. Is it possible to call reference page images when publishing to HTML 5, or should I change my styles?

I know that this will not be an issue when I to migrate to XML, but I'm hoping to find a quick fix in the meantime. I suspect that if there is an unstructured solution to this, it's hiding in the style mapping settings.

Thanks in advance for your advice!

This topic has been closed for replies.

4 replies

GrossTonnage
Participating Frequently
December 16, 2014

FYI, This problem was addressed by the latest patch. I contacted everyone in @ArnisGubins ' post above, and they responded promptly and proactively. Thanks to everyone who weighed in here and leaned on Adobe to get this addressed.

Bob_Niland
Community Expert
Community Expert
December 17, 2014

And just in case you wanted another aspect of this to tweak, be sure to see:

ANSI Z535.1 Safety Colors in Frame

Participant
August 29, 2014

I reported this bug to Adobe about a month ago. They said it would be fixed in the next release of FM, whenever that may be.

In the short-term, you can use CSS to place an image before a particular format. In my example I am using a NDNoteWarning format that had a reference frame Warning icon above text. Add the below style info to the main.css file (located in template/Theme1_Standard/ folder). You'll have to play around with the margin and text-align settings for your application:

#rh_default_topic_placeholder_id p.FM_NDNoteWarning::before {

  content:url(note-warning.png);

  display: block;

  margin-left: auto;

  margin-right: auto;

  margin-top: 8px;

  text-align: center;

}

GrossTonnage
Participating Frequently
September 2, 2014

@mattschlote,

I suspected/hoped that CSS would hold a solution to this problem, but I'm a relative noob there. Thanks for the starter code. I'll tweak it, try it out, and post results.

Bob_Niland
Community Expert
Community Expert
September 2, 2014

> I suspected/hoped that CSS would hold a solution to this problem ...

That might introduce a new problem, which is: do all browsers on all clients support the CSS generated. MSIE8 in particular might be spotty.

GrossTonnage
Participating Frequently
August 7, 2014

Looks like Arnis Gubins already laid this issue to rest a few days ago.

Reference graphics missing in HTML5

This is disappointing, but I guess I can just make these alert graphics available for import.

Jeff_Coatsworth
Community Expert
Community Expert
August 8, 2014

So it sounds if you strand the images in anchored frames with that above/below property set to None, then they will appear in the HTML5?

Jeff_Coatsworth
Community Expert
Community Expert
August 7, 2014

Are the images in anchored frames? That’s the only way they’ll survive publishing as HTML

GrossTonnage
Participating Frequently
August 7, 2014

Yes, each of the referenced images are in a separate anchored frame.

The paragraph style calls the image from the reference page.

This is is a PDF output sample:

This is an HTML5 output sample from the same source and settings:

Am I missing a setting somewhere?