Quote:
Originally Posted by jackie_w
I think you can override an @page in the epub with your own @page in the custom css.
|
But you can't override a page-template. You have to delete them and then remove the reference in the OPF and in all the XML that have such.
Code:
@page {
margin-top: 0;
margin-bottom: 0;
margin-left: 0;
margin-right: 0
{
body {
widows: 0;
orphans: 0;
margin-top: 0;
margin-bottom: 0;
margin-left: 0;
margin-right: 0;
text-align: justify
}
There you go. That will do if it works.