View Single Post
Old 02-06-2017, 08:03 AM   #15
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: 74,669
Karma: 130140792
Join Date: Nov 2006
Location: Roslindale, Massachusetts
Device: Kobo Libra 2, Kobo Aura H2O, PRS-650, PRS-T1, nook STR, PW3
That's still in need of fixing. Some of that poorly constructed CSS could very well block some options from working such as night mode, changing the font, and changing the margin.

This is what I would have done...

Code:
<h2>3</h2>

<p class="first-para">NEIL withdrew all his money from his bank, then parked in a secluded spot where he and Lomax waited until nightfall.</p>
<p>Then they drove back to the spaceport, where Neil approached the hangar and had them bring his employer’s ship out onto the reinforced pavement of the takeoff strip. While the ship’s computer was waiting for clearance, the young man raced out of the cockpit and stopped the first security man he could find.</p>
<p>“Something’s wrong!” he panted.</p>
<p>“What?” asked the man.</p>

And the relevant styles

body {
widows: 1;
orphans: 1;
margin-top: 0;
margin-bottom: 0;
margin-left: 0;
margin-right: 0;
text-align: justify;
}
p {
margin-top: 0;
margin-bottom: 0;
text-indent: 1.2em
}
h2 {
margin-top: .8em;
margin-bottom: .8em;
text-align: center
}
p.first-para {
text-align : justify;
text-indent : 0;
margin-top: 0;
margin-right: 0;
margin-bottom: 0;
margin-left: 0;
}
JSWolf is offline   Reply With Quote