View Single Post
Old 08-31-2019, 04:40 AM   #62
Doitsu
Grand Sorcerer
Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.
 
Doitsu's Avatar
 
Posts: 5,745
Karma: 24031403
Join Date: Dec 2010
Device: Kindle PW2
@lumpynose if you're interested in creating Apple Books (iBooks) compatible popup footnotes, you might want to read the footnote section of the Apple Books Asset Guide, because Apple is really picky when it comes to footnote id attributes. It expects:

Code:
  <aside id="myNote" epub:type="footnote">
    <p style="direction:rtl">Text in popup</p>
  </aside>
or

Code:
  <div id="myNote" epub:type="footnote">
    <p style="direction:rtl">Text in popup</p>
  </div>
If you add the id attribute to other tags inside of <div> or <aside> tags, popup footnotes won't work.
Doitsu is offline   Reply With Quote