mbraak / jqTree

Tree widget for jQuery
https://mbraak.github.io/jqTree/
Apache License 2.0
1.02k stars 177 forks source link

css style for increasing the node spacing #358

Closed sribat closed 9 years ago

sribat commented 9 years ago

Hi, I just started exploring your plugin and it seems very apt for our application. We need more spacing between nodes of the tree. Can you please guide me how to implement this. Thanks!

mbraak commented 9 years ago

You can style the tree using css. So you could do something like this:

ul.jqtree-tree .jqtree-element {
    margin: 8px 0;
}
sribat commented 9 years ago

Thank you !