solved:
recap:
1.i like the calibre default conversion - it seems to add just enough space between text & bevel
2. my problem book had NO space between text & bevel & I could not puzzle out why
answer.
the original CSS had a definition for body ( shown above), it did not have a definition for .body
if I add a dot i.e. make that a definiton for .body then all is well
no idea why there was no dot for that 1 entry in original CSS.
so I just need to understand the dot function in CSS
sample CSS
body { blah blah} ....... not good
insert a dot:
.body { blah blah} ....... all OK
|