I am following zendcast's
Zend_Navigation – creating a menu, a sitemap and breadcrumbs screencast and I will like to replace the menus he has there with so called pure "Mega Menu". The screen cast uses an xml file like so
Home /
<pages>
<report>
<label>Reports</label>
<uri>/report</uri>
<report_sub>
<label>Reports</label>
<uri>/report</uri>
</report_sub>
</report>
<setup>
<label>System Setup</label>
<uri>/systemsetup</uri>
</setup>
<managestaff>
<label>Manage Groups</label>
<uri>/groups/save</uri>
</managestaff>
<logout>
<label>Logout</label>
<uri>/authentication/logout</uri>
</logout>
</pages>
</home>
</nav>
How do I use css to format the above so as to create a Mega Menu like effect in zend framework?