The work around that I came up with was to use the following style to have no text decoration on a Sigil index marker, e.g.
/* Comment out to restore index entry hyperlinks */
/* This works in dayvision mode but not in night vision. In night vision, the text stays black and thus is invisible against the black night background. So, encapsulate the index_marker link around a forced space character and leave the usually wrapped text blank.*/
a.sigil_index_marker{color: black; a:link{color:black}; text-decoration: none;}
As a last production step, using regex, encapsulate the sigil index marker around a space and leave the text as ordinary unmarked text, e.g. -
Change this:
<a class="sigil_index_marker" title="Common whitetail dragonfly" id="sigil_index_id_1">Common whitetail dragonflies</a>
to this:
<a class="sigil_index_marker" title="Common whitetail dragonfly" id="sigil_index_id_1"> </a>Common whitetail dragonflies
With this kludge, you get Sigil index markup and index cross-referencing but without any underlining of the index marked text. This works both in daytime and night vision modes. - Kurt
- Kurt
|