Ha, still going here, don't know why I don't just put myself out of my misery.
I have done a revision of the stylesheet for each book and have found a few anomalies which have been corrected.
For the record I had my images with two conflicting classes which still managed to show up OK in the public books all the same.
I had for some reason: list-style: none; instead of list-style-type: none;
I've switched that around.
My recent background is web development so my ebooks are very simple with the CSS, my file is just over 1k, there are not many classes, I have a basic seven. I see some of the automatically generated CSS files clock in at 30k. Having a look at how all over the place other people's markup is, a new class for each paragraph almost, I wonder how they troubleshoot that barrel of odds and ends.
The CSS looks like this with a few working classes left out.
Quote:
@font-face {
font-family: "Abel";
font-style: normal;
font-weight: normal;
src: url("../Fonts/Abel-Regular.ttf") format("truetype");
}
body {
margin: 0;
padding: 0;
}
p {
color: #333;
font-size: 0.75em;
line-height: 1.4;
margin: 0;
padding: 0;
text-align: left;
text-indent: 1.5em;
}
p.title {
color: #e65c00;
font-family: "Abel", sans-serif;
font-size: 1em;
margin-top: 0.25em;
margin-bottom: 0.125em;
page-break-before: always;
text-align: center;
text-indent: 0;
.toc {
font-family: "Abel", sans-serif;
font-size: 1em;
line-height: 1.4;
margin-left: 1em;
text-indent: 0;
}
.books {
font-family: "Abel", sans-serif;
font-size: 0.9125em;
line-height: 1.4;
margin-left: 1em;
margin-bottom: 0.1em;
margin-top: 0.1em;
text-indent: 0;
}
ul {
margin-left: 1em;
margin-top: .25em;
margin-bottom: .25em;
list-style-type: none;
}
a {
text-decoration: none;
}
|
The only things not working are the font-family, neither the "Abel" nor the sans-serif are seen, and the a{text-decoration: none;}.
Sorry to go on about this but I'd love to work it out.
Remember this all looks just fine when previewed using Book Preview and in the file downloaded on the Edit Book Details page of KDP.