Hi,
I was using the modified style that David Lee had to show a In this Section content list. I recently upgraded to Flare 2017 r3 and that list is now non-existant.
It is just the header In this Section and nothing else. Any ideas why this would now break in all my HTML outputs?
And I cannot remember how to remove this if I can't get it to work.
Thanks,
Mary
In This Section Listing unavailable since Flare Upgrade
In This Section Listing unavailable since Flare Upgrade
You do not have the required permissions to view the files attached to this post.
Re: In This Section Listing unavailable since Flare Upgrade
My article that contains that was for Flare v10, and I think MadCap changed the default behaviour of mini TOCs in 2017.
Edit the mini toc proxy in the master page, and set its TOC Depth to 1. That should get the items to appear again.
In the CSS, if you want the "In this section" text to appear, use this instead:
Edit the mini toc proxy in the master page, and set its TOC Depth to 1. That should get the items to appear again.
In the CSS, if you want the "In this section" text to appear, use this instead:
Code: Select all
div.MCMiniTocBox::before,
div.MCMiniTocBox_0::before /* Fix to add title to miniTOC boxes in output */
{
content: 'In this section';
line-height: 150%;
font-weight: bold;
}Re: In This Section Listing unavailable since Flare Upgrade
Thanks Dave. Adding the 1 brings back the content and keeps the In This Section in place.
MadCap|miniTocProxy /* MadCap|miniTocProxy: MiniTocProxy (normal) */
{
/*
clear: right;
float: right;
width: 30%;
max-width: 350px;
*/
margin-top: 8px;
margin-bottom: 8px;
background-color: #eff0ef;
border-style: none;
border-left: 8px solid #afafaf;
padding: 8px;
mc-auto-number-format: 'In this section';
mc-auto-number-class: boxTitle;
mc-toc-depth: 1;
}
Mary
MadCap|miniTocProxy /* MadCap|miniTocProxy: MiniTocProxy (normal) */
{
/*
clear: right;
float: right;
width: 30%;
max-width: 350px;
*/
margin-top: 8px;
margin-bottom: 8px;
background-color: #eff0ef;
border-style: none;
border-left: 8px solid #afafaf;
padding: 8px;
mc-auto-number-format: 'In this section';
mc-auto-number-class: boxTitle;
mc-toc-depth: 1;
}
Mary