IE6 doesn't understand the CSS standard for child selectors (>) which indicate the direct child of the previous element.
Thus, this will not work for IE6:
Code:
#categoriesContent>ul>li>ul>li>a {/*hide only first level subcategories - right box*/
display: none;
}
If people have old computers (like me), they may be stuck with IE6 and not able to use modern versions of IE.
(They could still use a real browser like Firefox if they wanted to:)
There should be an IE-only hack that will do it - I will see what I can come up with. Perhaps
Code:
* html #categoriesContent ul ul a {/*hide only first level subcategories - right box -IE6 hack*/
display: none;
}
* html #categoriesContent ul ul ul a {/*show deeper subcategories - right box -IE6 hack*/
display: list-item;
}