We launched new forums in March 2019—join us there. In a hurry for help with your website? Get Help Now!
    • 16020
    • 43 Posts
    Just curious where the code is to adjust the tree width. It’s way to small for me to read all of the folders ... Is there a way to do this?
    • There is a scrollbar at the bottom; you can also drag it from the right side as wide or as narrow as you like.
        Studying MODX in the desert - http://sottwell.com
        Tips and Tricks from the MODX Forums and Slack Channels - http://modxcookbook.com
        Join the Slack Community - http://modx.org
        • 29076
        • 615 Posts
        Yoy can also set the width of the tree frame:

        In manager\frames\1.php, find
        <?php if ($modx->config['manager_direction'] == 'ltr') {
        	// Left-to-Right reading (sidebar on left)
        	?>
        	<frameset cols="260,*" border="3" frameborder="3" framespacing="3" bordercolor="#ffffff">
        		<frame name="tree" src="index.php?a=1&f=tree" scrolling="no" frameborder="0" onresize="top.tree.resizeTree();">
        		<frame name="main" src="index.php?a=2"  scrolling="auto" frameborder="0" onload="if (top.mainMenu.stopWork()) top.mainMenu.stopWork();">
        <?php } else {
        	// Right-to-Left reading (sidebar on right)
        	?>
            	<frameset cols="*,260" border="3" frameborder="3" framespacing="3" bordercolor="#ffffff">
        		<frame name="main" src="index.php?a=2" scrolling="auto" frameborder="0" onload="if (top.mainMenu.stopWork()) top.mainMenu.stopWork();">
        		<frame name="tree" src="index.php?a=1&f=tree" scrolling="no" frameborder="0" onresize="top.tree.resizeTree();">
        <?php } ?>

        Change the
        frameset cols="260,*"

        or
        frameset cols="*,260"
        to what ever you need.
          I think, thererfor I am! But what I am, and why...?