User-1015649212 posted
When you use the CSS Adapters, the treeview will look differently because you must also add CSS styles. The CSS Adapters do not inject inline styles like this
< td style="width:400px; font-family:arial; color:green">
they add CSS "hooks" that you can use in your CSS file to style elements of the table. Hooks would be extra classes and IDs in the xhtml that allow CSS styling, such as
<li class="AspNet-Menu-Leaf">
This list element can be styled in the CSS file in this manner...
li.AspNet-Menu-Leaf { font-weight: bold; background-color: yellow; }