Thanks for your post. Question:
Is there any way to remove spaces between paragraphs (which Calibre news downloads always have)?
Quote:
Originally Posted by DoctorOhh
Viewer 4.10
With the viewer changed to version 4+ my css for the viewer and the background changed. I now use the below CSS and the attached background. In landscape mode, 2 pages per screen for reading on my computer.
The body css is to move the text slightly off the top of the page so the fonts don't touch the top. Moving much further will start to move text off the bottom of the screen. If you don't use a background image then leave the body out of your css and use the sections in the viewer preferences to set margins, colors, fonts etc.
Code:
P {
margin-left: 1.25em !important;
margin-right: 1.15em !important;
}
body {
margin-top: 0.15em !important;
}
If the book I pull up to read has all the paragraphs spaced using div tags vice p tags then I would simply change the code to
Code:
div {
margin-left: 1.25em !important;
margin-right: 1.15em !important;
}
body {
margin-top: 0.15em !important;
}
|