View Single Post
Old 01-27-2015, 03:20 PM   #3
GMcG
Writer
GMcG ought to be getting tired of karma fortunes by now.GMcG ought to be getting tired of karma fortunes by now.GMcG ought to be getting tired of karma fortunes by now.GMcG ought to be getting tired of karma fortunes by now.GMcG ought to be getting tired of karma fortunes by now.GMcG ought to be getting tired of karma fortunes by now.GMcG ought to be getting tired of karma fortunes by now.GMcG ought to be getting tired of karma fortunes by now.GMcG ought to be getting tired of karma fortunes by now.GMcG ought to be getting tired of karma fortunes by now.GMcG ought to be getting tired of karma fortunes by now.
 
GMcG's Avatar
 
Posts: 101
Karma: 590630
Join Date: Mar 2011
Location: Munich, Germany
Device: none
This seems to work (Calibre, Sigil, ADE):

Instead of

.author, .title, .subtitle, .editor {
display: table;
width: 100%;
}

use

.author {
display: table;
width: 100%;
height: 21%
}
.title {
display: table;
width: 100%;
height: 21%
}
.subtitle {
display: table;
width: 100%;
height: 21%
}
.editor {
display: table;
width: 100%;
height: 35%
}

You can delete the height in the paragraphs but you still need

html, body {
height: 98%;
}

George
GMcG is offline   Reply With Quote