View Single Post
Old 01-11-2016, 03:42 PM   #2
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,687
Karma: 24031401
Join Date: Dec 2010
Device: Kindle PW2
This behavior is caused by the style that you've assigned to the link targets:

Code:
 <h2 class="hide" id="sigil_toc_id_13">Absenz</h2>
Code:
.hide {display:none;}
Basically, you've created links to invisibe = non-existing targets.

You might want to change this to:

from:

Code:
  <h2 class="hide" id="sigil_toc_id_13">Absenz</h2>

  <p><strong>Absenz</strong> · Abwesenheit · Defizit · Fehlen</p>
to:

Code:
  <p id="sigil_toc_id_13"><strong>Absenz</strong> · Abwesenheit · Defizit · Fehlen</p>
Doitsu is offline   Reply With Quote