View Single Post
Old 09-25-2021, 01:11 PM   #3
hobnail
Running with scissors
hobnail ought to be getting tired of karma fortunes by now.hobnail ought to be getting tired of karma fortunes by now.hobnail ought to be getting tired of karma fortunes by now.hobnail ought to be getting tired of karma fortunes by now.hobnail ought to be getting tired of karma fortunes by now.hobnail ought to be getting tired of karma fortunes by now.hobnail ought to be getting tired of karma fortunes by now.hobnail ought to be getting tired of karma fortunes by now.hobnail ought to be getting tired of karma fortunes by now.hobnail ought to be getting tired of karma fortunes by now.hobnail ought to be getting tired of karma fortunes by now.
 
Posts: 1,590
Karma: 14328510
Join Date: Nov 2019
Device: none
As theducks says, the only sure-fire way is to edit the code. Unfortunately you need to eyeball the html files to see what classes are used on the body tag as well as the p tag. Then fix the css files.

I take a sledge hammer approach and in the html files I globally delete the class on the body tag as well as the p tag for the body paragraphs (e.g., substitute nothing for class="calibre1"), then I add the following to the bottom of the css files.
Code:
body {
    border: 0;
    margin: 0;
    padding: 0;
     width: auto;
}

p {
    margin: 0;
    padding: 0;
    text-indent: 2em;
}
Alternatively, you could fix their css for whatever classes they're using. Also watch out for a div around the entire chapter in each html file, which will also need fixing.

Remember that in the html a p tag with a class has higher precedence over a naked p, regardless of the order in the css file.

Last edited by hobnail; 09-25-2021 at 01:18 PM.
hobnail is offline   Reply With Quote