Hello,
1) I am sorry, there is no option for highlighting the whole path in the
Tree View web part.
2) Yes, you can achieve this by styling its classes in the site's css stylesheet. For example, I have set properties like
width and
align for a
span element in the tree view and I've also disabled images of uncollapsed items:
#my_treeView table span {
display: block;
width: 80px;
text-align: center;
}
#my_treeView div table {
font: italic 12px "Times New Roman";
}
#my_treeView div table img {
display: none;
}
As you can see below, the menu is centered and has a different font style for each level:
Best regards,
Jan Hermann