Hi Brenden,
I'm working in V8. I've created transformations for every level.
I have a header, two items and a footer. I've already called to the final level which is located in a collapsible list. I'm having a problem of the menu opening but not staying open when something in that list is selected.
For example, take this menu ->
Main Choice 1
* MC1 Sub Choice 1
* MC1 Sub Choice 2
Main Choice 2
* MC2 Sub Choice 1
* MC2 Sub Choice 2
* MC2 Sub Choice 3
It shows up as this when you first open the page. This is both items not expanded.
Main Choice 1
Main Choice 2
Then I click on on MC1 and it expands to:
Main Choice 1
* MC1 Sub Choice 1
* MC1 Sub Choice 2
Main Choice 2
My problem is, when I try to click on MC1 Sub Choice 1 in the expanded menu, it will not stay expanded.
My second problem is that when I click on any other Main Choice option, it will only expand Main Choice 1.
I'm assuming the problem is from the first transformation that is placing the same ID to each main choice section ul id="collapse-buttons" class="collapse" . I need each main choice section to have a unique ID. So the code should be ul id="code to call to the individual section" class="collapse". Does this exist?
This unique ID will keep the expanded menu open when I select the sub options. I just don't know what code to put there. I really don't know if I'm explaining this well. This may be something really simple but I'm missing it.
Thank you