View Single Post
Old 12-05-2013, 03:34 PM   #24
Tex2002ans
Wizard
Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.
 
Posts: 2,306
Karma: 13057279
Join Date: Jul 2012
Device: Kobo Forma, Nook
Quote:
Originally Posted by crutledge View Post
I have come to the conclusion that dropcap and image is a trade-off between pretty and readable and have decided to stay with the "up-cap" which merely enlarges the first letter and has no indent. There is (for me) no stumble in reading the text.
That is exactly what we decided to settle on at work.

The "Dropcap" broke on too many readers (not to mention all the different EPUB reading programs out there), so the typesetter decided to nix it (and decided that a simple Raised Cap would still keep with the "spirit of the original").

As long as your code is very cleanly marked (and you are consistent in your usage), it should be EASY AS PIE to change it in the future using CSS.

Here is an example of one of the books I completed last month + screenshots:

Click image for larger version

Name:	Moley,Raymond.-.After.Seven.Years.PDF.png
Views:	284
Size:	56.1 KB
ID:	116262 Click image for larger version

Name:	Moley,Raymond.-.After.Seven.Years.EPUB.png
Views:	292
Size:	80.9 KB
ID:	116263 Click image for larger version

Name:	Moley,Raymond.-.After.Seven.Years.ADE.png
Views:	290
Size:	74.9 KB
ID:	116264 Click image for larger version

Name:	MoleyRaymond.-.After.Seven.Years.Nook.jpg
Views:	286
Size:	172.1 KB
ID:	116265

Quote:
<p class="noindent"><span class="raisedcap">T</span>HIS is a story that began, in so far as it can be said to have an exact beginning, on a dim January day in 1932. Guernsey Cross, the secretary of the Governor, had darted in and out of the cluttered executive office for perhaps the dozenth time in a half hour. The Governor gave an empty dish on his desk a restless push, looked at me earnestly, and said, “Make no mistake about it. I don’t know why anyone would <i>want</i> to be President, with things in the shape they are now.”</p>
CSS:

Code:
.noindent {
	text-indent: 0;
}

span.raisedcap {
	font-size: 2em;
}
So if you wanted a Dropcap in the future, you could easily swap raisedcap CSS -> dropcap CSS.
Attached Files
File Type: epub Moley,Raymond.-.After.Seven.Years[WIP][11.13.2013].epub (1.29 MB, 196 views)

Last edited by Tex2002ans; 12-05-2013 at 03:39 PM.
Tex2002ans is offline   Reply With Quote