View Single Post
Old 04-09-2018, 07:26 AM   #26
AlanHK
Guru
AlanHK ought to be getting tired of karma fortunes by now.AlanHK ought to be getting tired of karma fortunes by now.AlanHK ought to be getting tired of karma fortunes by now.AlanHK ought to be getting tired of karma fortunes by now.AlanHK ought to be getting tired of karma fortunes by now.AlanHK ought to be getting tired of karma fortunes by now.AlanHK ought to be getting tired of karma fortunes by now.AlanHK ought to be getting tired of karma fortunes by now.AlanHK ought to be getting tired of karma fortunes by now.AlanHK ought to be getting tired of karma fortunes by now.AlanHK ought to be getting tired of karma fortunes by now.
 
AlanHK's Avatar
 
Posts: 681
Karma: 929286
Join Date: Apr 2014
Device: PW-3, iPad, Android phone
Quote:
Originally Posted by billyray520 View Post
I made two passes of looking for "[" and "]" to eliminate them. I replaced them with a space. The resulting footnote links unfortunately had varying size underlines, so it wasn't a perfect solution,
That's probably due to justification stretching the spaces.
You could use a fixed width space, like an en or em space.
Or better I think, do it with padding in CSS:

I used this for my notes:
Code:
<a href="../Text/42-notes.html#n2" id="n2" class="noteref">[2]</a> 

.noteref { font-weight: bold; font-size:0.85em;padding: 0 0.25em; }
AlanHK is offline   Reply With Quote