Quote:
Originally Posted by lolloso
Hi, sorry for not replying earlier. I'm attaching the scrambled ePub, hope it's helpful.
|
I tried it and I see the same thing as you, the footnote number appears without the text in the pop up. It seems that the kindle does not handle the case of the linked number being separate from the paragraph containing the footnote text.
As an experiment I tried moving the linked number inside the <p> element. I also added a line break <br/> to maintain the look you have of the number being on a separate line from the text. The pop up works properly in that case.
Original footnote:
Code:
<div class="footnote">
<a href="../Text/e9788845981708_epi01.html#ref_ftn_fn1" id="ftn_fn1"><span>1</span></a>
<p class="p">«Jieuwbgz vfgwas poam nexrhoiru i’vswak», pl C. Fqfuhizaw, <span class="i1">Klkhq hc ilfecs</span>, u mjxy sz D. Smfiwzjhau, Dzrprhcss, Tpihnq, 7939, p. 4064.</p>
</div>
Modified working version:
Code:
<div class="footnote">
<p class="p"><a href="../Text/e9788845981708_epi01.html#ref_ftn_fn1" id="ftn_fn1"><span>1</span></a><br/>«Jieuwbgz vfgwas poam nexrhoiru i’vswak», pl C. Fqfuhizaw, <span class="i1">Klkhq hc ilfecs</span>, u mjxy sz D. Smfiwzjhau, Dzrprhcss, Tpihnq, 7939, p. 4064.</p>
</div>