List of ePub Resources

Below is a list of ePub resources developed in conjunction with the MOGO Media InDesign to ePub Seminar. You can click the individual links below, or download the PDF here.

This page and the PDF will be updated on an ongoing basis (this page will probably be more current), so check back regularly for changes!

Also, the newest version of the seminar hand-out is here: InDesign to ePub Seminar Handout.

Desktop ePub Readers

Publishers and Aggregators

Books and Websites

Software

    Sigil – working with code in finished ePub; indicating cover file; adding metadata, including the missing date metadata
    FlightCrew – checking ePub validity
    ePubChecker – ePub Validation
    Calibre – converting ePub to .mobi for Kindle; choosing cover file; eReader (when it works)
    Springy Archiver – for cracking open ePub files; use to edit the code in a separate text editor; zips the ePub back after edits
    BBEdit – text editor
    Text Wrangler – text editor
    Oxygen – create, edit, validate ePubs

Scripts and Plug-ins

Code Snippets

    COVER:
    Defined in the metadata section of content.opf:
    <meta name=”cover” content=”cover-image” />
    Defined in the manifest section of content.opf:
    <item id=”cover-image” href=”images/Tales_Spies.jpeg” media-type=”image/jpeg”/>

    DATE:
    Defined in the metadata section of content.opf (currently should show empty date tag)
    <dc:date>2011-03-10</dc:date>
    Must have at least a 4-digit year. Can also use YYYY-MM-DD

    ITEMS DEFINED IN THE CSS (values will vary, just for example):

    Drop Cap character style:
    span.dropcap {
    color: #3D5430;
    font-size: 3em;
    float: left;
    margin-top: 0.3em;
    margin-right: 0.08em;
    font-weight: bold;
    }

    Text wrap of grouped images and captions (creates a group and classes for the image as well as the caption):
    div.group {
    margin: 0 .3em 0 0;
    float: left;
    width: 50%;
    line-height: 2em;
    }
    img {
    width: 100%;
    vertical-align: text-top;
    margin-bottom: .5em;}
    p.caption {
    font-size: .7em;
    font-style: italic;
    line-height: 100%;
    text-align:center;
    }

    Other values for items such as floating sidebars:
    width: 50%;
    float: left;
    border-color: gray;
    border-style: solid;
    border-width: 1px;
    margin: 0 .75em 0 0
    padding: 0.5em;
    background-color: blue;

    Colors can be specified with named-colors or hex colors (remember the # before hex colors).

    A basic working knowledge of some CSS and HTML (XHTML) is needed to fully customize these elements in your ePub.

Check out all of my tips and tricks!