I have a tree structure created using html and css. I am trying to hide the last node in the tree using the following css code:
div ul li ul li ul li ul.treeview{
display: none;
}
However, it doesn't seem to be working. Can anyone spot what the issue might be?
Here is the markup for the tree structure:
<div id="field-term-parent-value-wrapper" class="form-item form-item-labeled">
<div id="field-term-parent-value" class="tm-processed">
<ul class="treeview">
<li class="collapsable">
<ul class="treeview" style="display: block;">
<li class="collapsable">
<ul class="treeview" style="display: block;">
data