Printed Mini-TOC - Bulleted List

This forum is for all Flare issues related to PDF, eBook, Microsoft Word, Adobe FrameMaker, XPS, and XHTML book targets.
Post Reply
Titus
Propeller Head
Posts: 38
Joined: Thu Dec 04, 2014 2:33 pm

Printed Mini-TOC - Bulleted List

Post by Titus »

Hello again,

So I've looked through the forums, and perhaps this just isn't possible..

I'm using the mini-toc proxy to generate lists of h2s that appear in each book. I applied a list style to the p.minitoc1 element, and this works fine for online output, but the bullet doesn't appear at all for print output. I also tried to create an autonumber style for the print medium, using alt+0149 (•), but it doesn't appear either.

Does anyone know how this is done?

Thanks for your time!
Ina
Jr. Propeller Head
Posts: 5
Joined: Wed Apr 05, 2017 2:41 am
Location: Germany

Re: Printed Mini-TOC - Bulleted List

Post by Ina »

I have the same problem in the TOC. Could anyone help us, please?

Either a list-style-image nor a list-style-type will be displayed in the PDF toc.

p.TOC3
{
display: list-item;
list-style-type: square;
}

Nothing works. What do I do wrong?
GregStenhouse
Sr. Propeller Head
Posts: 330
Joined: Tue May 13, 2008 3:27 pm
Location: Christchurch, New Zealand

Re: Printed Mini-TOC - Bulleted List

Post by GregStenhouse »

I believe you are looking for the class td.GenTOCText3

However applying your styles to that may push your page numbers to the next line. I think you are better off with something like this:

Code: Select all

td.GenTOCText3:before {
    content:"• ";
}
Post Reply