I've tried selecting the OL element in the xml structure bar on the left of the document editor, then doing List Actions > List Start Number. This brings up the Set List Item Value Dialog. I set the start number to 6 in there and click OK, but nothing changes in the editor. I refreshed the editor (F5), and still nothing changes there. The list still starts at 1. On the off chance that the change is only visible in the built output I built the target (a PDF) and opened it. Even there, the list still starts at 1.
I also tried selecting the first LI element of the list in the xml structure bar then applying the List Actions > List Start Number > 6. That doesn't work either.
What am I doing wrong?
The OL uses the default style in the stylesheet for that document type (a log book document). In the stylesheet, the default OL is set up as:
Code: Select all
/* DEFAULT NUMBERED LIST */
/* Numbered 1), 2), 3), etc., numbers right-aligned, text LHS 1 cm in from page margin */
/* In order to right align the nos., need them in a defined-width element, which means floating them */
/* Can then set li text position independently with p margin-left */
ol {
margin-left: 0cm; /* Zero ol margin as will set margins on p elements within the ol */
margin-bottom: 18pt; /* Bottom margin for list as a whole (somehow only applies to the parent list of a nested list) */ }
ol li {
list-style-type: none;
mc-auto-number-format: 'O:{n+})';
mc-auto-number-position: float-left;
mc-auto-number-class: olNumClass; }
ol p { margin-left: 1cm; } /* Left margin for li text, from page body left (or other container if applicable), ignoring the li nos. as they are floating */
span.olNumClass {
width: 0.8cm; /* Sets RHS position of li number; must be less than p margin-left val or will bump 1st line of li text to right */
text-align: right; }
ol > li:first-child { mc-auto-number-format: 'O:{n=1})'; } /* Resets numbering at start of each list */
ol li p ~ p { margin-top: 6pt; } /* Smaller top margin for additional paras within (under) a main list item */Regards,
Bruce