Hi
i have a menu in an include php file:
<div id="menu" >
<?php
// include functions
include_once('includes/functions.php');
// array to hold top menu
$top_menu_items = array(
'index.php' => array('text' => 'Home'),
'about.php' => array('text' => 'About'),
'contact.php' => array('text' => 'Contact')
);
// call the function that draws the menu
echo draw_menu($script_name, $top_menu_items);
?>
</div>
THe problem is that i need to give to the last item in the menu a different class in this case to "Contact", how can i change his style?
Any ideas?
Thanks