John, Any chance of seeing more complex conditional statements in templates? EG... IIF({Tab.IsActive AND Page.HasChildren}='True',class=" HasChildren SelectedItem") Or perhaps... CASE( {Tab.IsActive}='True',class=" SelectedItem", {Page.HasChildren}='True',class=" HasChildren", default, class="Baren" ) Or the ability to append to a data type... IIF({Tab.IsActive}='True',tag.class="SelectedItem") IIF({Page.HasChildren}='True',tag.class+=" HasChildren") ...Any of these would preload logic in the CSS and reduce the need for JS or unnecessary nested items. |