Topic: displaying HOME in menu (working dropdown system)
Hi Guys,
It's me again i'm afraid, managed to fix loads of issues with my CSS so the site is looking better now, however I'm stuggling to get the menu system to display HOME before the main page drop downs...
It should display HOME NORTHERN IRELAND ETC ETC....
Im using:
<?php function snippet_menuh($parent){
$out = ''; $childs = $parent->children();
if (count($childs) > 0) {
$out = '<ul>';
foreach ($childs as $child)
$out .= '<li>'.$child->link().snippet_menuh($child).'</li>';
$out.= '</ul>';
}
return $out;
}
?>
<ul id="nav-m"><?php echo snippet_menuh($this->find('/')); ?></ul>Any ideas?
Last edited by wickedwebsites (2010-05-05 19:10)

