Quote:
Originally Posted by gbm
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
|
Sorry, but I have to disagree here.
Not just for nook as this works in all ePub. If you prefer to use asterisks still use a space between them.
Code:
<p class="sb">● ● ●</p>
in your css add this:
Code:
.sb {
text-align: center
margin-top: .8em;
margin-bottom: .8em;
text-indent: 0
}
You need to add top space AND bottom space. Also, keep the CSS minimized. Don't put in unnecessary code. All those margins with a value of 0 don't normally need to be there and you don't need the display: block. Plus, don't use absolute spacing such as px. em is best to use.