View Single Post
Old 07-03-2017, 05:32 AM   #3
GeoffR
Wizard
GeoffR ought to be getting tired of karma fortunes by now.GeoffR ought to be getting tired of karma fortunes by now.GeoffR ought to be getting tired of karma fortunes by now.GeoffR ought to be getting tired of karma fortunes by now.GeoffR ought to be getting tired of karma fortunes by now.GeoffR ought to be getting tired of karma fortunes by now.GeoffR ought to be getting tired of karma fortunes by now.GeoffR ought to be getting tired of karma fortunes by now.GeoffR ought to be getting tired of karma fortunes by now.GeoffR ought to be getting tired of karma fortunes by now.GeoffR ought to be getting tired of karma fortunes by now.
 
GeoffR's Avatar
 
Posts: 3,821
Karma: 19162882
Join Date: Nov 2012
Location: Te Riu-a-Māui
Device: Kobo Glo
The book appears to be formatted with the <pre> tag instead of <p>. The default for <pre> is to use a monospaced font, and to preserve whitespace.

As well as removing the font-family:monospace and white-space: pre-wrap properties, you could try adding something like this to the stylesheet:
Code:
pre { font-family: inherit; white-space: normal; }
but the <pre> tag is likely to mess up the formatting options on some ereaders, so a real fix would probably involve replacing all the <pre> tags with <p>.
GeoffR is offline   Reply With Quote