Quote:
Originally Posted by coaver
That fixed the title and chapter section but the actual text of the book is still overlapping. Any other suggestions? Settings tweaks?
|
Open the file up in
Sigil (
forum here) and fix it.
Here's an example from your file. When you look at the code view of your main body of text, most of your paragraphs are <p class="cotx">. When you look at the style.css file cotx looks like this:
.cotx { border-bottom: 0;
border-top: 0;
display: block;
font-size: 0.70588em;
line-height: 0.1em;
margin-bottom: 0;
margin-left: 0;
margin-right: 0;
margin-top: 0;
padding-bottom: 0;
padding-top: 0;
text-align: justify;
text-indent: 0
}
Changing line-height to 1.1em fixes most of your text.
Now just find the other areas that are still messed up and see what code handles that element and change the css until it works. There seems to be a lot of areas that need fixing.
Good Luck