Did you have an example of all properties that can be set for the webtree for all styles that can be set (also in which elements of the tree)?
BorderStyle=Solid ForeColor="Black" BackColor="White"
Font-Names="Tahoma" Font-Size="10pt"
in css, but not all can be set that way.
Hello,
You can use the property CssClass of NodeStyle tag and set CSS class for all nodes, concrete node or the tree. Please taka e a look at the code below: <style type="text/css"> .css { font-size: 10pt; font-family: Tahoma; color:Yellow; border-style: solid; background-color: red; } .css1 { //to do } </style><ignav:UltraWebTree CssClass="css1" ><NodeStyle CssClass="css" />...
Hope this helps.