Thread: Kobo Bug thread
View Single Post
Old 03-29-2017, 10:30 AM   #879
jackie_w
Grand Sorcerer
jackie_w ought to be getting tired of karma fortunes by now.jackie_w ought to be getting tired of karma fortunes by now.jackie_w ought to be getting tired of karma fortunes by now.jackie_w ought to be getting tired of karma fortunes by now.jackie_w ought to be getting tired of karma fortunes by now.jackie_w ought to be getting tired of karma fortunes by now.jackie_w ought to be getting tired of karma fortunes by now.jackie_w ought to be getting tired of karma fortunes by now.jackie_w ought to be getting tired of karma fortunes by now.jackie_w ought to be getting tired of karma fortunes by now.jackie_w ought to be getting tired of karma fortunes by now.
 
Posts: 6,252
Karma: 16544692
Join Date: Sep 2009
Location: UK
Device: ClaraHD, Forma, Libra2, Clara2E, LibraCol, PBTouchHD3
@ssurneed,

The problem is the HTML for each of your chapters has
Code:
<body class="z">
and the matching CSS style is
Code:
.z {
	font-family: 'Times New Roman', serif;
	margin-right: 8pt;
}
Consequently your right margin is larger than your left.

Either remove the red line or change the CSS to
Code:
.z {
	font-family: 'Times New Roman', serif;
	margin-left: 0;
        margin-right: 0;
}
ETA: ... and my advice, if you don't like the ebook styling as provided by the ebook vendor, your best option is to learn a little HTML/CSS so you can fix this sort of problem yourself.

Last edited by jackie_w; 03-29-2017 at 10:36 AM. Reason: ETA
jackie_w is offline   Reply With Quote