Hello,I've recently added some new array items to the SCP submenu.Here's an example:{ $nav->addSubMenu(array('desc' => __('JS'), 'title'=>__('John Smith\'s Open Tickets'), 'href'=>'tickets.php?advsid=fb0a2fa70dffb6c91783466064517400', 'iconclass'=>'assignedTickets'), ($_REQUEST=='open'));}{ $nav->addSubMenu(array('desc' => __('FE'), 'title'=>__('Fred Edward\'s Open Tickets'), 'href'=>'tickets.php?advsid=de4b5645ac2705be9ec329aba5e4fe2d', 'iconclass'=>'assignedTickets'), ($_REQUEST=='open'));}I know these are poor implementations but my manager wanted quick ways to access the ticket list of certain staff members... One problem is that I'd like to add a <br> or \n\r just after the 'New Ticket' array item. When using echo or simply closing the PHP tags and reopening them after putting a <br> in the middle it adds it to the top of the page and not simply move these list items down one line. Any ideas? :(