View Single Post
Old 11-26-2016, 03:14 PM   #54
BetterRed
null operator (he/him)
BetterRed ought to be getting tired of karma fortunes by now.BetterRed ought to be getting tired of karma fortunes by now.BetterRed ought to be getting tired of karma fortunes by now.BetterRed ought to be getting tired of karma fortunes by now.BetterRed ought to be getting tired of karma fortunes by now.BetterRed ought to be getting tired of karma fortunes by now.BetterRed ought to be getting tired of karma fortunes by now.BetterRed ought to be getting tired of karma fortunes by now.BetterRed ought to be getting tired of karma fortunes by now.BetterRed ought to be getting tired of karma fortunes by now.BetterRed ought to be getting tired of karma fortunes by now.
 
Posts: 21,861
Karma: 30277270
Join Date: Mar 2012
Location: Sydney Australia
Device: none
@hidden.platypus - if you look at the Live CSS Panel in the editor, it will show the styles that are used to create the 'final style'.

I imported your docx into editor, here are a couple of examples of what I'm seeing in Live CSS.

Click image for larger version

Name:	1.jpg
Views:	213
Size:	262.9 KB
ID:	153242 Click image for larger version

Name:	2.jpg
Views:	212
Size:	250.1 KB
ID:	153243

I don't see the problem - the final styles have a font specified. And what I see in Word, the editor preview, and the ebook viewer, look pretty much the same to me.

Here is the style sheet the DOCX import generated

Spoiler:
body {
font-family: "Arial", sans-serif;
font-size: 13pt;
color: #2E74B5;
}
/* In word all paragraphs have zero margins unless explicitly specified in a style */
p, h1, h2, h3, h4, h5, h6, div {
margin: 0;
padding: 0;
}
/* In word headings only have bold font if explicitly specified */
h1, h2, h3, h4, h5, h6 {
font-weight: normal;
}
/* Setting padding-left to zero breaks rendering of lists, so we only set the other values to zero and leave padding-left for the user-agent */
ul, ol {
margin: 0;
padding-top: 0;
padding-bottom: 0;
padding-right: 0;
}
/* The word hyperlink styling will set text-decoration to underline if needed */
a {
text-decoration: none;
}
sup.noteref a {
text-decoration: none;
}
h1.notes-header {
page-break-before: always;
}
dl.notes dt {
font-size: large;
}
dl.notes dt a {
text-decoration: none;
}
dl.notes dd {
page-break-after: always;
}
dl.notes dd:last-of-type {
page-break-after: avoid;
}
span.tab {
white-space: pre;
}
p.index-entry {
text-indent: 0;
}
p.index-entry a:visited {
color: blue;
}
p.index-entry a:hover {
color: red;
}
.block_1 {
padding-top: 0;
margin-bottom: 12pt;
color: black;
}
.block_2 {
page-break-inside: avoid;
page-break-after: avoid;
margin-left: 28.8pt;
margin-top: 12pt;
padding-bottom: 0;
margin-bottom: 0;
font-family: "Cochin LT", serif;
font-size: 24pt;
text-align: center;
}
.block_3 {
padding-top: 0;
padding-bottom: 0;
margin-bottom: 12pt;
color: black;
}
.block_4 {
padding-top: 0;
padding-bottom: 0;
margin-bottom: 12pt;
font-family: serif;
font-size: 10pt;
color: black;
}
.block_5 {
margin-left: 28.8pt;
padding-top: 0;
padding-bottom: 0;
margin-bottom: 8pt;
font-family: "URW Palladio L", serif;
font-size: 12pt;
color: black;
}
.block_6 {
page-break-inside: avoid;
page-break-after: avoid;
margin-left: 28.8pt;
padding-top: 0;
margin-top: 12pt;
padding-bottom: 0;
margin-bottom: 0;
font-family: "Cochin LT", serif;
font-size: 24pt;
text-align: center;
}


BR

Last edited by BetterRed; 11-26-2016 at 03:48 PM. Reason: added style sheet
BetterRed is offline   Reply With Quote