View Single Post
Old 09-04-2014, 10:39 AM   #2
RbnJrg
Wizard
RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.
 
Posts: 1,801
Karma: 8700631
Join Date: Mar 2013
Location: Rosario - Santa Fe - Argentina
Device: Kindle 4 NT
Quote:
Originally Posted by Toxaris View Post
I am trying to achieve this effect, but it doesn't really work out like I want to. No problem in Sigil and Calibre of course, but not in ADE and I want it also to work there as this gives a little more chance it will work on a reader.
The effect I am after is:


The only way I seem to make it work is via a table and ugly code. There must be something easier that is still ePUB2 compliant...
The following solution works fine for me under ADE:

1. In your .css stylesheet write:

Code:
h2 {
   text-align: right;
   margin-top: -1em;
   margin-bottom: 2.5em;
   font-size: 1.4em;
   border-bottom: 2px solid;
   height: 2em;
}

.text {
   float: right;
   width: 2.25em;
   line-height: 3em;
   font-size: 1.4em;
   font-family: serif;
   background: white !important;
}

p {
   text-align: justify;
   text-indent: 0em;
}
2. In your .xhtml file write:

Code:
<h2><span class="text">1999</span></h2>

<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla ac tellus nunc. Phasellus imperdiet leo metus, et gravida lacus.</p>
This is how it looks under ADE 3.0:

Click image for larger version

Name:	Image1.png
Views:	260
Size:	83.9 KB
ID:	127861

Below you can check the respective epub.

Regards
Rubén
Attached Files
File Type: epub FillOut Line.epub (2.7 KB, 247 views)

Last edited by RbnJrg; 09-04-2014 at 02:46 PM.
RbnJrg is offline   Reply With Quote