This explains how to attach Secondary menu under Primary like on http://csqa.info
You just need to know a bit HTML here. Find this code in your page.tpl.php
<?php if (isset($secondary_links)) { ?>
<?php print theme('links', $secondary_links) ?>
<?php } ?>
Move it below the code for primary menu. Below is the snippet from bluemarine theme.
<?php if (isset($primary_links)) { ?><?php print theme('links', $primary_links) ?><?php } ?>
<?php if (isset($secondary_links)) { ?>
<?php print theme('links', $secondary_links) ?>
<?php } ?>
Having done this, you can move the secondary menu anywhere on the page, just with a little HTML knowledge








