Index: typo3/class.webpagetree.php =================================================================== --- typo3/class.webpagetree.php (revision 8841) +++ typo3/class.webpagetree.php (working copy) @@ -225,9 +225,15 @@ } // add CSS classes to the list item - if($v['hasSub']) { $classAttr .= ($classAttr) ? ' expanded': 'expanded'; } - if($v['isLast']) { $classAttr .= ($classAttr) ? ' last' : 'last'; } - + if($v['hasSub']) { + $classAttr .= ($classAttr) ? ' expanded' : 'expanded'; + } + if($v['isLast']) { + $classAttr .= ($classAttr) ? ' last' : 'last'; + } + if($v['row']['_FIRST_NOT_IN_MENU']) { + $classAttr .= ($classAttr) ? ' hasNotShownInMenuText' : 'hasNotShownInMenuText'; + } $itemHTML .='
  • '. $v['HTML']. Index: typo3/sysext/t3skin/stylesheets/structure/element_tree.css =================================================================== --- typo3/sysext/t3skin/stylesheets/structure/element_tree.css (revision 8841) +++ typo3/sysext/t3skin/stylesheets/structure/element_tree.css (working copy) @@ -88,6 +88,10 @@ height: 16px; padding-left: 2px; } +ul.tree li.hasNotShownInMenuText div.treeLinkItem { + height: 48px; +} + span.dragIcon { display: inline-block; height: 16px;