Hi all, hope somebody can help with this problem;
I'm using the below function to move the menu into the branding div, so it sits to the right of the header, in line with a logo on the left. Here's the function:
// remove the menu from its old position
function remove_access() {
remove_action('thematic_header','thematic_access',9);
}
add_action('init','remove_access');
// add menu to its new position
add_action('thematic_header','thematic_access',3);
All seems fine, and everything works well, but I seem to have an issue when I test in ie; and it seems this function is causing the issue. Can anyone see an issue with this function? Any help appreciated!
thanks
Ben