Reputation: 791
Please see http://alltimeplay.com/
The menu has funny behaviour while clicking. The page screen also shifts. It floats to left or right. When clicked in same position the screen occupies the normal position. Could not navigate to the pages.
I could not figure out why.
Any help?
Upvotes: 0
Views: 58
Reputation: 1883
The problem probably lies with a "focus" class being added all the way up the DOM tree. I do not see it being added like that in Chrome, but it is happening in IE11.
In functions.js, line 100: http://alltimeplay.com/wp-content/themes/ATP/js/functions.js?ver=20140319
// Focus styles for menus.
$( '.primary-navigation, .secondary-navigation' ).find( 'a' ).on( 'focus.twentyfourteen blur.twentyfourteen', function() {
$( this ).parents().toggleClass( 'focus' );
} );
} );
Upvotes: 1