
: How to change text alignment with Calibre book editor I have a book in .epub format (I will be converting it into .mobi after), and I need to change the text alignment to left everywhere.
I have a book in .epub format (I will be converting it into .mobi after), and I need to change the text alignment to left everywhere.
I am aware of the text alignment feature in the book editor but from what I understand it only can change individual selected html elements, where I need to change the text alignment of around 200 full pages of text (not single lines/elements).
Preview:
Does anyone knows a quick way to change the text alignment of all the text? Maybe I can do it during the conversion to .mobi but I don't know how.
Free books android app tbrJar TBR JAR Read Free books online gutenberg
More posts by @Jamie

: How can I read my epub books on the kobo app on my computer? I have an e-reader (Kobo Touch) where I have downloaded my ebooks in epub format. How can I read those books on the Kobo desktop

: Within Calibre, is it possible to set a hierarchy on the series field? Calibre supports hierarchical tags, by placing a dot between the parent and the children tags, like, in example: History.Ancient
1 Comments
Sorted by latest first Latest Oldest Best
You can use a CSS style to apply this formatting to all your text:
body {
text-align: left;
}
This rule will be applied to all your text, so it will affect both regular paragraphs (<p> and <div>) and headings (<h1>, <h2> and so on).
If you just want to format "regular" text you could try to apply this styling just to <p>'s and see if it is sufficient:
p {
text-align: left;
}
Of course, if some custom style is already present for these elements, you can just add the CSS properties to the existing selectors.
You must place this code inside the CSS stylesheet. Usually it is named stylesheet.css (but it can be different) and you can find it on the left "File Browser" panel under the "Styles" voice
Free books android app tbrJar TBR JAR Read Free books online gutenberg