lackner_media
lackner_media

Reputation: 153

Bootstrap 2 on IE10 displays Modal wrong

i have a problem with bootstrap 2.2.1 and have a big problems with my modals in IE10. When the modal opens it appears in the right top corner and the most of it is cutted of. See Screenshot. enter image description here

This appears only in IE10. Do you know why and can you help me?

I can't show you the site and link, because it's on a site where you need a account to use it.

EDIT - SOLUTION: I found the solution! The modal loaded a php file and in this php file I loaded the header of the site again (the area). And that was the mistake. After deleting the inculde line every thing worked.

Upvotes: 0

Views: 156

Answers (1)

Colin
Colin

Reputation: 11

IE 10 seems to behave this way when allowed to render in "quirks" or "compatibility mode"; use this meta tag to prevent it:

<meta http-equiv="X-UA-Compatible" content="IE=edge">

Upvotes: 1

Related Questions