Jump to content
  • 0

глючит сайт в IE6


SoFuWa
 Share

Question

Сайт*** там меню и бэкгроунд глючит в IE6

Используется iepngfix в файле тилей он вызывается

.png{behavior:url(js/iepngfix.php)}

вот содержимое iepngfix.php

<?php

// Use this file in your CSS in place of the .HTC file if it works offline but not online.

// It will send the correct MIME type so that IE will execute the script correctly.

header('Content-type: text/x-component');

include('iepngfix.htc');

?>

Во всех браузерах и во всех версиях работает, только в IE6 и младше такой глюк. Еще ошибка на сайте Access is denied: http://www.crocustours.ru/js/iepngfix.php

:)

Edited by SoFuWa
Link to comment
Share on other sites

4 answers to this question

Recommended Posts

  • 0
Use this file in your CSS in place of the .HTC file if it works offline but not online.

Используйте этот файл в вашем СSS вместо .HTC файла если сайт работает оффлайн, а не онлайн.

Может вот где собака порылась?

Link to comment
Share on other sites

  • 0
Используйте этот файл в вашем СSS вместо .HTC файла если сайт работает оффлайн, а не онлайн.

Может вот где собака порылась?

но в php файле указан MIME тип, так написано делать в инструкции к скрипту, как же тогда сделать.

Link to comment
Share on other sites

  • 0

Проблема в том, что pngfix не может найти прозрачный gif (прозрачная картинка 1x1).

Вариант 1

в js/iepngfix.php поправить эту строчку:

if (typeof blankImg == 'undefined') var blankImg = 'blank.gif';

вместо blank.gif - прописать полный путь, те будет:

if (typeof blankImg == 'undefined') var blankImg = 'http://www.crocustours.ru/js/blank.gif';

Вариант 2

В той же строчке прописать относительный путь:

if (typeof blankImg == 'undefined') var blankImg = 'js/blank.gif';

Вариант 3

Поместить файл blank.gif в корень сайта.

Недостаток последних двух вариантов в том, что это будет работать только для страниц расположенных в корне сайта. Поэтому рекомендую использовать первый вариант =)

Link to comment
Share on other sites

  • 0

Тот PNG fix который Вы используете, уже немного устарел, рекомендую Вам вот этот:

http://cssclub.ru/blog/97.html

Там и написано про него, и скачать можно .... Желаю Вам удачи.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy