I need to replicate this heading style:

I've tried combinations of padding, margins, mc-multiline-indent, and mc-autonumber-position, but so far have only managed to achieve high levels of frustration
Does anyone have a suggestion to resolve this?

Code: Select all
h2 {
...
mc-auto-number-position: outside-head;
mc-auto-number-class: AutoNumb4Headlines;
mc-auto-number-format: 'CH:{chapnum}.{n+} ';
margin-left: 56mm;
}
Code: Select all
span.AutoNumb4Headlines
{
mc-float: outside-left;
margin-right: 25px;
}techwrite_BC wrote:Hi, I hope I don't misunderstand your problem.
I use hanging headings as well, for this I defined the h-style with:with the span-classCode: Select all
h2 { ... mc-auto-number-position: outside-head; mc-auto-number-class: AutoNumb4Headlines; mc-auto-number-format: 'CH:{chapnum}.{n+} '; margin-left: 56mm; }The result looks like this: If this works for you, you probably might adjust the margin-right-value, which positions the auto-number as well as the margin-left-value, which positions the text.Code: Select all
span.AutoNumb4Headlines { mc-float: outside-left; margin-right: 25px; }
-Stefan