View Single Post
Old 09-04-2019, 12:49 PM   #19
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,834
Karma: 8700631
Join Date: Mar 2013
Location: Rosario - Santa Fe - Argentina
Device: Kindle 4 NT
Quote:
Originally Posted by Ghitulescu View Post
Excellent - I never thought of this idea
Glad that it served you.

Quote:
Anyway, I use red only to debug the links, only the alignement is important.
Better yet; we don't have to worry about the text decoration

EDIT: And don't use a class to style the <a> tags inside <li> tags, so instead of:

Code:
a.myN {
  float: left;
  margin-left:-2em;
  height: 1.2em;
  text-decoration: none;
}
just use:

Code:
li a {
  float: left;
  margin-left:-2em;
  height: 1.2em;
  text-decoration: none;
}
and

Code:
<li><a href="../Text/Section0002.xhtml#N1">*******</a>

Last edited by RbnJrg; 09-04-2019 at 12:58 PM.
RbnJrg is offline   Reply With Quote