Hi Michael;
Maybe there is an easier way to get what you want. I works perfectly under ADE 3.0 so I think it should also work on RMSDK ereaders. The code I used was:
1. In the .xhtml file:
Code:
<p class="fl">Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
<p class="sc">This is the second line</p>
2. In the .css file:
Code:
.fl {
display: inline;
margin-bottom: 0em;
text-align: justify;
}
.sc {
display: inline;
position: relative;
top: 1.2em; /*This position must be linked with the line-height you are using; take in count that */
}
As you can see, we only need to use the property "display: inline" to the the desired effect. This is how it looks in Sigil and ADE 3.0 (ADE with two size of fonts):
Below you can check the respective .epub.
Regards
Rubén
UPDATE: If you want to consecutive stanzas with that format, then you need to enclose them in a <div> block with the property "display: block"; so you'd need to use the following styles:
and in the .xhtml file:
This is how it looks under ADE:
Also I attach a new .epub.