Quote:
Originally Posted by deback
Then something is wrong with your code or something else needs to be changed. Is there a plain .body class in your CSS file or a class at the top that is causing your changes not to take effect? Sometimes, I have to make changes in classes like .preface or something else that's in a <div> or <p> statement above everything on that page (with the ending tag at the bottom of the page).
Check your CSS file for the <body class=???> and add line-height: 1.2; to that class (if it's not already included).
Go through the CSS file and delete all the line-heights except for the class that is the <body class>. Do a regex find and replace to delete them all.
Sometimes, you just have to keep looking to find the problem, and the problem might be found where you don't expect it to be.
|
I don't have a CSS file I used your code directly in Calibre's Extra CSS field. It sucks that there's no generic solution to this in Calibre. (But I guess with these wretched css/html/xml based ebook formats)
Ps:
Here are the source CSS files fo the books I tested with. I guess there's a number of elements I would need changed.
Spoiler:
Code:
@font-face {
src: url(fonts/ChaparralPro-Italic.otf);
font-family: "Chaparral Pro";
font-style: italic
}
@font-face {
src: url(fonts/ChaparralPro-Regular.otf);
font-family: "Chaparral Pro"
}
.block {
display: block;
line-height: 1.5;
text-align: center;
text-indent: 14.2pt;
padding: 0;
margin: 0 0 10pt
}
.block1 {
display: block;
line-height: 1.5;
text-align: justify;
text-indent: 14.2pt;
padding: 0;
margin: 0 0 10pt
}
.block3 {
display: block;
line-height: 1.5;
padding: 0;
margin: 0 0 10pt 36pt
}
.calibre {
color: black;
display: block;
font-family: "Chaparral Pro", serif;
font-size: 1em;
line-height: 1.5;
padding-left: 0;
padding-right: 0;
margin: 0 5pt
}
h1.subchapter {
font-size: large;
text-align: center;
font-weight: bold;
margin-bottom: 2em;
}
span.dropcaps {
float: left;
font-size: 60px;
line-height: 50px;
padding-top: 1px;
margin-top: -.09em;
margin-right: .02em;
}
.nonindent {
text-align: justify;
text-indent: 0;
}
Code:
@namespace h "http://www.w3.org/1999/xhtml";
.calibre {
display: block;
font-size: 1em;
margin-bottom: 0;
margin-left: 5pt;
margin-right: 5pt;
margin-top: 0;
page-break-before: always
}
.calibre1 {
display: block;
font-size: 2em;
font-variant: small-caps;
font-weight: bold;
margin-bottom: 1.5em;
margin-left: 0;
margin-right: 0;
margin-top: 1.5em;
text-align: center
}
.calibre10 {
height: auto;
width: auto
}
.calibre11 {
font-style: italic
}
.calibre12 {
display: block;
font-size: 1em;
font-variant: small-caps;
font-weight: bold;
margin-bottom: 1em;
margin-left: 0;
margin-right: 0;
margin-top: 1em;
text-align: center
}
.calibre13 {
border-collapse: separate;
border-spacing: 2px;
display: table;
margin-bottom: 0;
margin-top: 0;
text-indent: 0
}
.calibre14 {
display: table-row;
vertical-align: middle
}
.calibre15 {
display: table-cell;
line-height: 1.25;
padding-bottom: 0;
padding-left: 0.5em;
padding-right: 0.5em;
padding-top: 0;
text-align: inherit;
vertical-align: top
}
.calibre16 {
display: block;
line-height: 1.25;
margin-bottom: 0;
margin-left: 0%;
margin-right: 0;
margin-top: 0;
padding-left: 1em;
text-indent: -1em
}
.calibre2 {
display: block;
font-size: 1em;
font-weight: bold;
margin-bottom: 1em;
margin-left: 0;
margin-right: 0;
margin-top: 1em;
text-align: center
}
.calibre3 {
display: block
}
.calibre4 {
display: block;
font-size: 1.83333em;
font-style: italic;
font-weight: bold;
margin-bottom: 1.25em;
margin-left: 0;
margin-right: 0;
margin-top: 1.25em;
text-align: center
}
.calibre5 {
display: block;
font-size: 1.41667em;
font-variant: small-caps;
font-weight: bold;
margin-bottom: 1em;
margin-left: 0;
margin-right: 0;
margin-top: 1em;
text-align: center
}
.calibre6 {
display: block;
margin-bottom: 0.25em;
margin-left: 1.75em;
margin-right: 0;
margin-top: 0.25em
}
.calibre7 {
display: block;
line-height: 1.25;
margin-bottom: 0.25em;
margin-left: 0;
margin-right: 0;
margin-top: 0.25em;
text-indent: 1.75em
}
.calibre8 {
color: blue;
cursor: pointer;
text-decoration: underline
}
.calibre9 {
display: block;
font-size: 1em;
font-weight: normal;
margin-bottom: 2em;
margin-left: 0;
margin-right: 0;
margin-top: 2em;
text-align: center
}
.center {
display: block;
line-height: 1.25;
margin-bottom: 0.25em;
margin-left: 0;
margin-right: 0;
margin-top: 0.25em;
text-align: center;
text-indent: 0
}
.no-indent {
display: block;
line-height: 1.25;
margin-bottom: 0.25em;
margin-left: 0;
margin-right: 0;
margin-top: 0.25em;
text-indent: 0
}
.right {
display: table-cell;
line-height: 1.25;
padding-bottom: 0;
padding-left: 0.5em;
padding-right: 0.5em;
padding-top: 0;
text-align: right;
text-indent: 0;
vertical-align: top
}