View Single Post
Old 06-18-2013, 10:24 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,634
Karma: 8566337
Join Date: Mar 2013
Location: Rosario - Santa Fe - Argentina
Device: Kindle 4 NT
Quote:
Originally Posted by valyria View Post
What is the best way to incorporate sidebars in Mobi books?
If I were you, I'd use a styled div (a float div -to left or right-, with color, borders, custom fonts...what you want). But since my K4NT doesn't support TTS, I woudn't know to tell you how a "div" sidebar will work with that feature.

Quote:
My idea is to save the sidebars with the text and background as an image and then insert that image into the file.
To me, it's not bad idea, especially thinking on TTS.

Below you have an example of a sidebar made with pure css (it works also in ADE). The code I used is:

Code:
div#sidebar {
   float: left;
   width: 50%;
   font-size: 120%;
   text-indent: 0;
   text-align: justify;
   margin: 1em 1em 1em 1ex;
   padding: 1em 1em 1em 1ex;;
   border-top: 6px solid black;
   border-bottom: 6px solid black;
}

.fl {
   display: table-cell;
   width: 0.3em;
   font-size: 8em;
   line-height: 80%;
   color: rgb(192, 192, 192);
}

.tf {
   display: table-cell;
   vertical-align: bottom;
   padding-left: 0.5em;
}
and in the .html file:

Code:
<div id="sidebar">
    <div class="fl">
      “
    </div>

    <div class="tf">
       ... Some text...
    </div>
</div>
Regards
Rubén
Attached Thumbnails
Click image for larger version

Name:	sidebar.jpg
Views:	477
Size:	92.4 KB
ID:	107109  
Attached Files
File Type: epub sidebar.epub (2.8 KB, 288 views)

Last edited by RbnJrg; 06-18-2013 at 10:34 AM.
RbnJrg is offline   Reply With Quote