View Single Post
Old 03-09-2016, 06:26 AM   #24
RbnJrg
Wizard
RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.
 
Posts: 1,551
Karma: 6613969
Join Date: Mar 2013
Location: Rosario - Santa Fe - Argentina
Device: Kindle 4 NT
Quote:
Originally Posted by fbrzvnrnd View Post
Sorry, not. You don't see the footnotes, you see the content of the links destination. If you are reading a hypertext ebook where you navigate in ebook, coolreader is unable to understand when a link is a note and when it is a navigation element.
Ah, now I understand what you want to say. In order that CoolReader can know when a link is a note and when a link is a navigation element, you need to use the css [atribute] selector. Let's say that when you want a note, you should style your ebook with:

In your css stylesheet:

Code:
a [type="note"]  { /* and here you set the properties you want for notes, for example: */
     font-weight: bold;
     text-decoration: none;
     vertical-align: super; 
     font-size: 0.7em;
}
and in the .xhtml file:

Code:
<p>blah, blah, blah, blah <a type="note" href="#n1">1</a>, blah, blah, etc.</p>
CoolReader knows that the atribute type="note" is a note and not a navigation element. When a <a> selector doesn't have a type="note" atribute CoolReader will consider it as a navigation element.
RbnJrg is offline   Reply With Quote