Quote:
Originally Posted by jackie_w
Kepubs do support both ligatures and kerning if you add the right line of CSS - body {text-rendering: optimizeLegibility;}- either by hand, via calibre driver or via patch. Ligatures/kerning will only be as good as the font you're using.
|
please how do I add that tag via calibre driver?
and is it possible to change my
p.center {
display: block;
text-align: center;
margin-top: 0;
text-indent: 0;
line-height: 130%;
widows: 2;
orphans: 2;
}
to that only with the same way?
p.center
* {
display: block;
text-align: center
!important;
margin-top: 0;
text-indent: 0;
line-height: 130%;
widows: 2;
orphans: 2;
}
adding the star and the !important to the existing tags
thank you