0

http://ucuzarakip.com/Kategori/Oyuncak-Kategoriler/Ahsap-Oyuncak/15

Please check this page in IE7 or IE8. I could not find where is the mistake. it works on Firefox and Chrome with no error.

Do you have any suggestion?

cagin
  • 5,772
  • 14
  • 74
  • 130

2 Answers2

2

you are using HTML5 elements. To make those elements work in IE7 and IE8, add the below code in your head tag

<!--[if lt IE 9]>
  <script>
      document.createElement('header');
      document.createElement('nav');
      document.createElement('section');
      document.createElement('article');
      document.createElement('aside');
      document.createElement('footer');
      document.createElement('hgroup');
  </script>
<![endif]-->

<style type="text/css">
  header, nav, section, article, aside, footer, hgroup{ 
       display: block;
  }
</style>

(Remove the HTML5 elements which you are not using or add the which you are using in the above code)

Source

Community
  • 1
  • 1
Mr_Green
  • 40,727
  • 45
  • 159
  • 271
0

You're using HTML5 elements without a HTML5 shiv.

IE7 and 8 do not support tags like nav, header, section, etc.

James Donnelly
  • 126,410
  • 34
  • 208
  • 218