In the ui.dynatree.js, what is the property/value that needs to be changed for the tree to appear at top left corner of the page? i.e. there should be no left and right margin. I am unable to find that one value that needs to changed. Can anyone please help.

link|improve this question
1  
i am not sure but you can inspect the elements using firebug,it might be ul.dynatree-container change the values inside this element and check. – run Sep 5 '11 at 6:20
feedback

1 Answer

This should move the tree container to an absolute position:

<html>
<head>
    [...]

<style type="text/css">
#tree {
    position: absolute;
    top: 50px;
    left: 100px;
}
</style>
<script type="text/javascript">
$(function(){
    $("#tree").dynatree({
        [...]
    });
});
</script>
</head>

<body>
    [...]
    <div id="tree"> </div>
</body>
</html>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.