Hi,
Thank you. The only part of our functions.php that mentions “nav” or “menu” is this one:
// Add ID and CLASS attributes to the first <ul> occurence in wp_page_menu
function add_menuclass($ulclass) {
return preg_replace('/<ul>/', '<ul class="menu">', $ulclass, 1);
}
add_filter('wp_page_menu','add_menuclass');
add_filter('wp_nav_menu','add_menuclass');
// Add custom background
if ( function_exists('add_custom_background') )
add_custom_background();
// Add navigation support
if ( function_exists('add_theme_support') )
add_theme_support( 'menus' );
But it doesn’t looks like that. If you need me to send you files I can.
Thanks anyway.