View Single Post
Old 06-23-2013, 10:41 AM   #30
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,828
Karma: 8700631
Join Date: Mar 2013
Location: Rosario - Santa Fe - Argentina
Device: Kindle 4 NT
Quote:
Originally Posted by mrmikel View Post
Still no joy in Mudville...increase the size to medium in the Sony Reader. It is ok on the original page, but it appears again on the following one over the text....Argh!
Well, I found a solution that works in ADE with ANY FONT SIZE (in Sigil looks ugly but in ADE is great).

In the stylesheet:

Code:
p {
  text-align: justify;
  margin: 0;
}

.parrot {
  background: url(../Images/bird.jpg) no-repeat top left;
  background-size: 183px 307px; 
}

.box1 {
  float: left;
  width: 183px;
  height: 195px;
}

.box2 {
  clear: left;
  float: left;
  width: 60px;
  height: 100px;
}
And in the .html file:

Code:
  <p>...some text..</p>
  <div class="parrot">
    <p class="box1"></p>
    <p class="box2"></p>
    <p>...some text..</p> /* Very important: the paragraph must be short */
  </div>
The epub validates at FlightCrew and Epubcheck.

Still I couldn't find a solution (for ADE, in Kindle there is no problem) for the inverse case, when the small box is the first one. ADE has bugs with the float property and I couldn't find a workaround so far.

Regards
Attached Thumbnails
Click image for larger version

Name:	parrot1.jpg
Views:	230
Size:	97.2 KB
ID:	107253  
Attached Files
File Type: epub Parrot.epub (11.5 KB, 219 views)
RbnJrg is offline   Reply With Quote