Skip to main content
Inspiring
January 11, 2012
Question

Why don't bullets print?

  • January 11, 2012
  • 1 reply
  • 3276 views

I'm running RoboHelp 9.0.2.271 and I'm generating output using Adobe AIR browser based help and FlashHelp Pro. I'm sure this is a user error, but I can't figure out why my bullets used to show up when  topics were sent to the printer, but now the bullets are missing when topics are printed. The bullets look fine in the Design view, the RH preview, and in the generated output--they just won't print.

So far I've:

  • Compared the current CSS file with the CSS file from a project with bullets that do print. No discrepancies were readily apparent.
  • Copied a bullet icon that was successfully printed (in another project) to the project in question. Edited the styles to reference the test bullet. The test bullet displayed correctly, but still didn't print.

Does anyone have an idea what might cause such behavior?

Thanks!

This topic has been closed for replies.

1 reply

Peter Grainge
Community Expert
Community Expert
January 12, 2012

Create a new single topic project using the same CSS and graphic for your bullets. Generate the outputs and verify the problem still exists in the outputs. Then see the contact page on my site and send the dummy project as instructed there.

I will see if I can find the problem.


See www.grainge.org for RoboHelp and Authoring tips

@petergrainge

Use the menu (bottom right) to mark the Best Answer or Highlight particularly useful replies. Found the answer elsewhere? Share it here.
Inspiring
January 13, 2012

Peter,

I did create a new single topic project, as you suggested. Using the same CSS and graphic, I saw the same behavior as before, where all seems well until I either look at a print preview in the browser or actually print--then there are no bullets. Interestingly enough, I discovered that if I rename the CSS file, without changing its content at all, and associate my single topic with the renamed CSS, then my generated output doesn't seem to use the style I want--but the bullets do print. (In this instance, the Design view and the RH preview continue to look the same as they did before the file was renamed.) I will send the dummy project to you, per your instructions.

Thanks for taking a look at it.

Peter Grainge
Community Expert
Community Expert
January 15, 2012

If I generate browser based AIR help from your project, the bullets print as they should. I cannot test FlashHelp Pro as I do not have RoboHelp Server - you do realise that is a requirement for the Pro versions of OLH?

It could be a printer problem, have you tested on more than one printer?

The other thing that could be wrong is that both the list style and the paragraph style specify the bullet image.

.p-Topic-Text-Bulleted {

    text-align: left;

    font-family: Arial;

    font-size: 10pt;

    margin-top: 3pt;

    margin-bottom: 1pt;

    list-style: url("Graphics/smallblack.gif");

    margin-left: 5pt;

}

li.p-Topic-Text-Bulleted {

    margin-top: 3.00pt;

    margin-bottom: 1.00pt;

    text-align: left;

    font-family: Arial;

    font-size: 10pt;

    margin-left: 5pt;

   list-style: url("Graphics/smallblack.gif");

}

Only the LI style need specify the image so try deleting that line from the paragraph style.

See Lists on my site and in particular the content re upgrading.


See www.grainge.org for RoboHelp and Authoring tips

@petergrainge

Use the menu (bottom right) to mark the Best Answer or Highlight particularly useful replies. Found the answer elsewhere? Share it here.