user991830
user991830

Reputation: 894

IE10 CSS div float issue

Site: http://www.rmgnetworks.com/company

The following is puzzling me...

In Chrome, Firefox & Safari the search box and upper links are fine.

enter image description here

IE10 shifts the search box and upper links to the left and over the start of the main navigation.

enter image description here

What would be the IE10 hack to sort this out?

Upvotes: 1

Views: 5098

Answers (1)

Mr_Green
Mr_Green

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

Related Questions