Our HTML documents have classes .l1, .l2 etc. indicating the hierarchy of the document. Generating the section counters etc. works perfectly.
302 .l1 {
303 counter-increment: c1;
304 counter-reset: c2;
305 }
306
307 .l2 {
308 counter-increment: c2;
309 counter-reset: c3;
310 }
311
312 .l3 {
313 counter-increment: c3;
314 counter-reset: c4;
315 }
316
317 .l4 {
318 counter-increment: c4;
319 counter-reset: c5;
320 }
I tried adding the following rule for reseting the footnote counter for each chapter:
322 .l1 {
323 counter-reset: footnote;
324 }
As a result: the 'c2' counter is no longer being reseted with the start of a new chapter.
(I can provide HTML + CSS if necessary).
Using Prince 7.0 on MacOSX
302 .l1 {
303 counter-increment: c1;
304 counter-reset: c2;
305 }
306
307 .l2 {
308 counter-increment: c2;
309 counter-reset: c3;
310 }
311
312 .l3 {
313 counter-increment: c3;
314 counter-reset: c4;
315 }
316
317 .l4 {
318 counter-increment: c4;
319 counter-reset: c5;
320 }
I tried adding the following rule for reseting the footnote counter for each chapter:
322 .l1 {
323 counter-reset: footnote;
324 }
As a result: the 'c2' counter is no longer being reseted with the start of a new chapter.
(I can provide HTML + CSS if necessary).
Using Prince 7.0 on MacOSX