View Single Post
Old 08-14-2015, 03:11 PM   #8
gbm
Wizard
gbm ought to be getting tired of karma fortunes by now.gbm ought to be getting tired of karma fortunes by now.gbm ought to be getting tired of karma fortunes by now.gbm ought to be getting tired of karma fortunes by now.gbm ought to be getting tired of karma fortunes by now.gbm ought to be getting tired of karma fortunes by now.gbm ought to be getting tired of karma fortunes by now.gbm ought to be getting tired of karma fortunes by now.gbm ought to be getting tired of karma fortunes by now.gbm ought to be getting tired of karma fortunes by now.gbm ought to be getting tired of karma fortunes by now.
 
Posts: 2,195
Karma: 8888888
Join Date: Jun 2010
Device: Kobo Clara HD,Hisence Sero 7 Pro RIP, Nook STR, jetbook lite
Quote:
Originally Posted by Tarana View Post
Thanks all! I used <blockquote> </blockquote> and that worked perfectly.

From http://www.w3.org, I found a centering technique.
For center allignment, I used:
<DIV align="Center">
<P>...text in first paragraph...
<P>...text in second paragraph...
<P>...text in third paragraph...
</DIV>

I am trying to learn how to use the style sheets, but it's not really coming together. Spending hours on it and no further ahead. That's why I use Calibre instead of Sigil in the first place.

Thanks though, I do appreciate all of your help including you EScwartz!
For your scene breaks with the nook use this:
Code:
<div class="sb">***</div>
in your css add this:
Code:
.sb {
  display: block;
  margin-bottom: 8px;
  margin-left: 0;
  margin-right: 0;
  margin-top: 0;
  text-align: center;
  text-indent: 0;
}
With the nook you need to tell it text-indent: 0 in the css or it will add an indent.

Note you can use any name you wish I just used sb as an example, also you can adjust the top and bottom margins to your preference.

bernie
gbm is offline   Reply With Quote