yes i have ordinary drop down menu on my site at the minute but when you go to parts or accessories the list of subs goes away off page, so thought i could use megamenu to make them go in columns accross page,
this maybe isnt now the right place to ask but am starting to go in right direction if you take another look
http://catchagrip.co.uk/megamenu/
so i have added another file called zen_categories_ul_generator_accessories.php in classes and limited it to only show c.categories_id=445 or c.parent_id=445
$categories_query = "select c.categories_id, cd.categories_name, c.parent_id
from " . TABLE_CATEGORIES . " c, " . TABLE_CATEGORIES_DESCRIPTION . " cd
where c.categories_id = cd.categories_id
and c.categories_status=1 and c.categories_id=445 or c.parent_id=445" .
" and cd.language_id = '" . (int)$_SESSION['languages_id'] . "' " .
" order by c.parent_id, c.sort_order, cd.categories_name";
and it seems like it is going to do my job but it calls every sub category workstand but the link is correct, any idea what im doing wrong
thanks
Bryan