Thank you
I did find on a forum somewhere this code below for functions.php.
It worked fine for me and is of course better to stop being overwritten in updates.
/* start remove contact 7 form from user menu*/
function remove_contact_menu () {
global $menu;
$restricted = array(__('Contact'));
end ($menu);
while (prev($menu)){
$value = explode(' ',$menu[key($menu)][0]);
if(in_array($value[0] != NULL?$value[0]:"" , $restricted)){unset($menu[key($menu)]);}
}
}
add_action('admin_menu', 'remove_contact_menu');
if(!current_user_can('level_10')) {
add_action('admin_menu', 'remove_contact_menu');
}
/* end remove contact 7 form from user menu*/