Quote:
Originally Posted by jackie_w
If the Title Page is displayed as black text on white background in Dark Mode, the simplest explanation would be that this page consists of a single black-and-white image and no actual text, similar to a cover page. This is fairly common, I have many such books.
If other pages don't appear "dark moded" and they are not images then check your CSS for hard-coded colour e.g.
Code:
background-color: white;
background-color: #fff;
color: black;
color: #000
and remove them all.
|
Thanks for suggesting this - comparing books that work and don't work, I think the "background-color: #fff" css is the culprit!