Hello!
I was editing some ebooks through Sigil that I first converted through Calibre, having to adjust some weird margins.
The margin css in the "stylesheet" css before conversion looks like this:
.calibre {
color: #000;
display: block;
font-size: 1em;
margin-bottom: 0;
margin-left: 5pt;
margin-right: 5pt;
margin-top: 0;
page-break-before: always;
text-align: justify
}
But after conversion it looks like this:
.calibre {
color: #000;
display: block;
font-size: 1em;
padding-left: 0;
padding-right: 0;
text-align: justify;
margin: 0 5pt
}
I have NO idea how I read that conversion to edit it. Help?