Page 1 of 1

Changing appearance of FN links in webhelp

Posted: Wed Mar 29, 2017 10:31 pm
by dgallo
We would like to add [] around footnote links.

For example in the webhelp output, when there is a footnote cross reference we want it to look as follows:

______________________________________________________________________________________________________

Here is where the cross reference would be [1].


1 This is a footnote description.

Re: Changing appearance of FN links in webhelp

Posted: Fri Mar 31, 2017 4:17 pm
by alin
Hello,

You will have to contribute an additional CSS [1] to the WebHelp transformation scenario and include the following styling rules:

Code: Select all


a[name^="fnsrc_"] > sup:before {
content: "["
}

a[name^="fnsrc_"] > sup:after {
content: "]"
}
[1] https://www.oxygenxml.com/doc/versions/ ... n-css.html

Regards,
Alin