Quote:
Originally Posted by Tarana
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