View Single Post
Old 08-25-2023, 03:12 PM   #54
JSWolf
Resident Curmudgeon
JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.
 
JSWolf's Avatar
 
Posts: 79,888
Karma: 146918083
Join Date: Nov 2006
Location: Roslindale, Massachusetts
Device: Kobo Libra 2, Kobo Aura H2O, PRS-650, PRS-T1, nook STR, PW3
Quote:
Originally Posted by Flaviocc View Post
Jon, I DID that.

ok...I will look now for @page on css. and back here.....

I followed exactly what you told me. But the @page is new info....I'll do now.
No you didn't. You have multiple @page and the CSS is not correct.
Code:
html, .calibre {
  margin-right: -1.5%;
  margin-left: -1.5%;
  break-inside: avoid !important;
}
Use -45px until it works.

The problem may be in your settings.
Go to preferences > Common options > Page setup and set all of the margins on the left side to -0.1pt.

This is the CSS to use.
Code:
html {
  margin-right: -45px;
  margin-left: -45px;
  break-inside: avoid !important;
}
JSWolf is offline   Reply With Quote