Does anyone know how to right-align the roman numerals in a substep procedure using CSS?
I can get right alignment if I use "ol ol" but when I use CSS styles the roman numerals align to the left.
I have tried applying a class around the auto-numbering but that has no effect.
Attached is an image showing the left/right issue.
Here is the CSS I am using for the p.substep1 and p.substep
Code: Select all
p.substep1
{
mc-auto-number-position: outside-head;
mc-auto-number-offset: 0.70cm;
margin-left: 3.4cm;
mc-auto-number-format: 'H:{r=1}. ';
}
p.substep
{
mc-auto-number-position: outside-head;
mc-auto-number-offset: 0.70cm;
margin-left: 3.4cm;
mc-auto-number-format: 'H:{r+}. ';
}Chris