I'm reading an epub book using koreader, and the paragraph style that's being used is indentation of first line in each paragraph. I prefer the style of having paragraphs not being indented, and instead having some space in between them.
So I figured I could probably change that using css. So I edited epub.css and added these lines, figuring that it should override whatever style is included in the book, or defined elsewhere in koreader:
Code:
p {
text-indent: 0em !important;
margin-top: 0.2em !important;
margin-bottom: 0.2em !important;
}
But it doesn't work, paragraphs are still indented, and the margins are not appearing. What am I doing wrong here?