The question ["I would like to format my body text with a indent"] was asked on the Sandvox Yahoo! Group to format text differently. A solution was posted by [Yann] that needs to be pasted as HTML in Sandvox: Edit > Paste HTML into Text. I added some extra styles to create the different headers and body texts in the sample below.
<style>
.text {font-family: Baskerville ; font-size: 14px ; text-align :
justify ; margin-left: 40px; margin-right: 40px;}
</style>
<p class="text">
Lorem ipsum dolor sit amet, consectetuer adipiscing elit.
</p>
A second style
And this is the gobbledy-gook text that doesn't mean anything and is only a filler. Why not use Lorem-Ipsum -- Why not indeed. Here goes:
Iureet vullandigna augait mincidunt adit; tin lute esequat habitasseis incipis. Feuisi scilis acilit ver iustrud velent facinci, utet voloreros enibh, molor alit euguer lamconullaor. Lobore eummy diam. Illaor pretium euipit nisit rhoncus dolendit sequam nostra rhoncus; dolummy praesed sum doluptatue iuscing susto.
Or even
Once the paragraph styles have been set in Raw HTML, the editing can be done in the normal Rich Text page view.
Eugiatum purus laor ultricies. Coreetue vero exercilit enibh essit ipsustrud dolobore atinit quatums, elese sociosqu odio. Diamet ip erostin hendre elenit commolor cum augiam eumsan numsandre velestionse. Varius te illaor. Proin interdum quisque enissim hendipisim aliquis diamcon issequi tellus; tatiniat tionulla odolore duis lor dionsenit. Aliqui ipsum idunt esse dipissit modolore vulluptat loborting ullut ipiscip tie. Eugiat esting feuguerit nostissi facilisse dignissequis lacus sollicitudin doluptat, eriurer velestionse nullandrem. Sandigna faccummy facilisis velit cor fames lorper, dolortis tatue illa hac ilit henisi.
The code for the above is this:
<style>
.text1 {font-family: Arial Black; font-size: 12px ; text-align : Left ; margin-left: 0px;}
</style>
<style>
.text2 {font-family: Arial Black; font-size: 12px ; text-align : Left ; margin-left: 30px;}
</style>
<style>
.text3 {font-family: Arial ; font-size: 12px ; text-align : Left ; margin-left: 30px;}
</style>
<style>
.text4 {font-family: Arial ; font-size: 12px ; text-align : Justify ; margin-left: 30px; margin-right: 50px;}
</style>
<p class="text1">Screengrab of the original</p>
<p class="text2">A second style</p>
<p class="text3">And this is the gobbledy-gook...</p>
<p class="text3">Iureet vullandigna aug...</p>
<p class="text1">Or even</p>
<p class="text4">Once the paragraph styles...</p>
<p class="text4">Eugiatum purus ...</p>
