Question for the CSS gurus out there:
I have a document where the heading styles use decimal autonumbering (i.e. h1 uses 1.0, 2.0 etc. and h2 uses 1.1, 1.2, etc.) The autonumbers are working properly. However, I would like some topics not to have autonumbering at all--for example, I don't want my copyright notices and print TOC to be numbered. To do this, I created a class in the h1 style called No_Heading (this style also doesn't count as a heading level as far as print TOCs go, hence the name).
The problem I'm having is that I can't remove the autonumbering in the class. I've tried deleting it in the autonumbering dialog of the stylesheet editor and adding a line manually in a text editor to the class styles (the code is mc-auto-number-format: ; ). In both cases, the class still inherits the autonumber format from the parent style.
So, can anyone tell me how to tell it NOT to inherit the parent style?