I'm struggling to format my lists in a legal style, I want to achieve something like this for my privacy policies and terms of use
1. Cookies 1.1 We use the following cookie a) strictly necessary cookies b) analytic cookies 1.2 You can block cookies 1.3 We may use third-party cookies 2. Collection of information 2.1 For the purposes outlined in Clause 2, we may collect and process the following information about you: a) Information you give us (i) when you report any problem to us (i) when you use certain features on our site
The problem I'm having is with my counters and the second level, 1.1, 1.2 etc This is the CSS I have so far, I've attached the rendered results and the example from the word doc I'm trying to emulate
.privacy-policy-list {
counter-reset: item;
}
.privacy-policy-list li li:before {
counter-increment: item;
content: counters(item, ".") " ";
}
.privacy-policy-list ol li ol li {
list-style-type: lower-alpha !important;
padding-left: 5em;
}
.privacy-policy-list ol li ol li ol li{
list-style-type: lower-roman !important;
}
I don't know what I'm doing wrong and would be grateful for your help to point me in the right direction, thanks