Bonjour,
Le problème se situe ici : http://perso.jojaba.fr
La feuille de style n'est pas prise en compte par ie7 et ie 8, je n'arrive pas à comprendre pourquoi... J'ai mis en place un commentaire conditionnel pour ie < 9 (donc 6, 7 et 8)...
Le code :
Modifié par jojaba (20 Dec 2012 - 22:24)
Le problème se situe ici : http://perso.jojaba.fr
La feuille de style n'est pas prise en compte par ie7 et ie 8, je n'arrive pas à comprendre pourquoi... J'ai mis en place un commentaire conditionnel pour ie < 9 (donc 6, 7 et 8)...
Le code :
<head>
<title><?php echo $title ?></title>
<meta charset="<?php pxInfo('encoding'); ?>" />
<meta name="description" content="<?php echo $description ?>" />
<meta name="keywords" content="<?php echo $keywords ?>" />
<link rel="icon" type="image/png" href="<?php pxInfo('filesurl'); ?>theme/airjojaba/img/favicon.png" />
<!--[if IE]><link rel="shortcut icon" type="image/x-icon" href="<?php pxInfo('filesurl'); ?>theme/airjojaba/img/favicon.ico" /><![endif]-->
<link rel="alternate" type="application/rss+xml" title="RSS" href="<?php pxInfo('url'); ?>rss.php" />
<link rel="stylesheet" type="text/css" href="<?php pxInfo('filesurl'); ?>theme/airjojaba/style.css" media="screen and (min-width: 1024px)" />
<!-- For little with screens (under 1024 px large, portable devices,...) -->
<link rel="stylesheet" type="text/css" href="<?php pxInfo('filesurl'); ?>theme/airjojaba/lwidth.css" media="screen and (max-width: 1023px)" />
<!-- For mobile devices -->
<meta name="viewport" content="width=device-width" />
<link rel="apple-touch-startup-image" href="<?php pxInfo('filesurl'); ?>theme/airjojaba/img/logo.png" />
<link rel="apple-touch-icon" href="<?php pxInfo('filesurl'); ?>theme/airjojaba/img/logo.png" />
<!--[if lt IE 9]>
<script src="<?php pxInfo('filesurl'); ?>theme/airjojaba/html5shiv.js"></script>
<link rel="stylesheet" type="text/css" href="<?php pxInfo('filesurl'); ?>theme/airjojaba/style.css" media="screen" />
<![endif]-->
<!-- For Printing -->
<link rel="stylesheet" type="text/css" href="<?php pxInfo('filesurl'); ?>theme/airjojaba/print-mini.css" media="print" />
<script src="<?php pxInfo('filesurl'); ?>theme/airjojaba/jojaba.js"></script>
<!-- Google analytics -->
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-************']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
Modifié par jojaba (20 Dec 2012 - 22:24)