Post History
Not quite, you can add Drop Caps to the CSS of the ePub file that Storyist generates for you This Storyist forum gives an example of how to modify the CSS for your .ePub file (which is just a zi...
Answer
#4: Attribution notice removed
Source: https://writers.stackexchange.com/a/34602 License name: CC BY-SA 3.0 License URL: https://creativecommons.org/licenses/by-sa/3.0/
#3: Attribution notice added
Source: https://writers.stackexchange.com/a/34602 License name: CC BY-SA 3.0 License URL: https://creativecommons.org/licenses/by-sa/3.0/
#2: Initial revision
## Not quite, you can add Drop Caps to the CSS of the ePub file that Storyist generates for you [This Storyist forum](http://storyist.invisionzone.com/index.php/topic/2020-editing-epub-files/) gives an example of how to modify the CSS for your .ePub file (which is just a zip that you can unzip to see the individual files) to add Drop Caps: > ### Adding drop caps to the start of a paragraph > > Another popular modification is to add drop caps to the first letter in a chapter. There are several ways to achieve this. If you're targeting iPad, the simplest way is to use the first-letter pseudo-class CSS selector as follows: h1 > p:first-of-type::first-letter { font-size: 5em; float:left; line-hight: 0.5; } As the author mentions you should be comfortable with manually overwriting the CSS from the ePub file and you should check the result on the different readers where you intend to publish your work. This is basically a workaround to change the standard layout in a not-intended way to match your specific preferences. * * * But beware that this seems to be discouraged by the community. See for example [this Storyist forum](http://storyist.invisionzone.com/index.php/topic/2775-creating-files-for-upload-to-kdp/) (emphasis mine): > Unlike a print book with a set interior design, the point of eBooks is to be easy for the readers to manipulate for themselves. So the best eBook "formatting" is, in fact, doing as little hard formatting as possible—don't embed fonts, **don't use drop caps** , all the things that you' do in print. Keep your eBooks clean. Because not only does every reader like things differently, but different eReaders display things differently, too. So my Kindle Paperwhite uses a different font than iBooks, etc. And that's okay. * * * The standard doesn't allow this. There is no documentation for Storyist that would suggest that there is an in-built feature to change this setting and this StackExchange question is the first thing I can find when I google "Storyist Drop Caps", which suggests that there is not a high demand for this sort of workaround. Use with care.