Reputation: 894
Site: http://www.rmgnetworks.com/company
The following is puzzling me...
In Chrome, Firefox & Safari the search box and upper links are fine.
IE10 shifts the search box and upper links to the left and over the start of the main navigation.
What would be the IE10 hack to sort this out?
Upvotes: 1
Views: 5098
Reputation: 41832
Give clear: both
(before float: left;
) to #menu .nav-collapse
.
#menu .nav-collapse
is present in your template.css
file. (just elongating my answer)
#menu .nav-collapse{
clear: both;
float: left;
}
Upvotes: 3