Quote:
Originally Posted by jiembe
Your code is similar to mine. That's not the point. I don't want to see the footnote if I don't need or want it, even if they are at the end of a chapter or at the end of the book. So I simply put the footnotes inside a <div> with a display:hidden style. The only way to see the footnotes is to click on the renvoi. That's work fine in the kepub format but disallowed the possibility to see those notes in the epub format.
|
I suspect you wanted display: none as the style. I use the following when I don't want the text to display (chapter heading where an image is used as the chapter heading but I want to have Chapter IV in the TOC.
Code:
.hidden {
display : none;
}