Quote:
Originally Posted by 20Gt
Hi im creating a walkthur for a game.
ive changed some of the sentences (using calibre editor)to blue or red colors using the built in html codes. I cant seem to get my (moon+ reader) to recognize the different colors. should i be using css or is this normal and different colored fonts cant actually be used.
Thanks Steve
|
for the basic 16 colors, you can use their name if you don't want to look up their RGB codes
Stylesheet:
Code:
color: blue;
background: white;
border-color: red;
NOTE: color names are
lowercase (all predefined names and tags must be LC. only user selectors may be mixed case and then, they must match exactly in use)
all valid