Support à partir de la version 1.5.3
Fin du support officiel depuis le 30 septembre 2011

Problème affichage images IE

  • carpnokill95
  • Visiteur
  • Visiteur
14 Avr 2010 07:29 #7 par carpnokill95
Réponse de carpnokill95 sur le sujet Re:Plorblème affichage images IE
oui c'est bien le template par défaut en effet.

je suis également sur mac et pc mais j'essaie de faire de gros effort pour que tout soit lisible sur les différents navigateurs internet...




Pour ce qui est de l'icone voici l'info : page officiel IE8 - compatibilité

Internet Explorer 8 est disponible en téléchargement et certains sites web ne sont pas encore prêts pour Internet Explorer 8.

Pour que Internet Explorer 8 utilise le moteur de rendu de Internet Explorer 7, l’internaute peut cliquer sur le boutton à droite de la barre d’adresse :

Enhanced-navigation

Cela permet de corriger des problèmes d'affichage comme le mauvais alignement du texte, des images, ou des zones de texte. Cette option sera valable pour le site en question et tous les autres sites continuerons à s’afficher avec le moteur de rendu de Internet Explorer 8. Pour revenir au moteur de rendu Internet Explorer 8 il suffira de cliquer à nouveau sur le bouton de compatibité.

Maintenant pour le développeur il possible d’ajouter à la page HTML un tag pour que Internet Explorer 8 utilise directement le moteur de rendu de Internet Explorer 7 afin que l’internaute n’ai pas à changer de mode de rendu manuellement.

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

Prérequis :

* Niveau : Niveau débutant
* Developpement HTML

Introduction

Cette article présente les différents modes de rendu de Internet Explorer 8 et explique comment le développeur va pouvoir contrôler le mode de rendu le plus adapté pour son site Web.
Les Modes de rendu de Internet Explorer 8

Internet Explorer 8 intègre plusieurs moteurs de rendu pour rester le plus compatible possible avec les sites Web existant.

Internet Explorer 8 possèdes 3 moteurs de rendu:

1. Quirks : Compatibilité avec Internet Explorer 5.
2. Internet Explorer 7 : Compatible avec Internet Explorer 7 et son comportement JavaScript
3. Internet Explorer 8 : Implémente les dernières fonctionnalités, la compatibilité CSS 2.1

Par défaut, Internet Explorer 8 utilise son nouveau moteur de rendu.
Changer le moteur de rendu par défault pour son site Web

msdn.microsoft.com/en-us/library/cc288325.aspx (US)

Pour changer le moteur de rendu d’un site Web complet, il y a deux solutions :

1. Pour le site entier en ajoutant dans l’entête http :X-UA-Compatible:IE=EmulateIE7

1.1 Html

<html>
<head>
<!-- Moteur Internet Explorer 7 -->
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
<title>Ma Page Web</title>
</head>
<body>
<p>Coucou.</p>
</body>
</html>

1.2 Dans le Web.Config sur IIS

msdn.microsoft.com/en-us/library/cc817572.aspx (US)


<configuration>
<system.webServer>
<httpProtocol>
<customHeaders>
<clear />
<add name="X-UA-Compatible" value="IE=EmulateIE7">
</customHeaders>
</httpProtocol>
</system.webServer>
</configuration>


1.3 Meta switch sur Apache

Vous pouvez lire cet article :

msdn.microsoft.com/en-us/library/cc817573.aspx (US)

2. Ajouter sur toutes les pages la balise meta :

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

Les différents modes supportés :


Mode


Description
IE=5 Moteur de rendu IE5 (Quirks)
IE=7 Moteur de rendu IE7 (Standard)
IE=Emulate7

Affichage des DOCTYPE Standard en IE7 (Standard)

Affichage des DOCTYPE Quicks en IE5 (Quirks Mode)
IE=8 Moteur de rendu IE8 (Standard)
IE=100 Moteur de rendu IE8 (Standard)
IE=a Moteur de rendu IE5 (Quirks)
IE=7.5 Moteur de rendu IE7 (Standard)
Vidéo associée :

Internet Explorer 8 - La compatibilité

Références (US)

* Readiness Internet Explorer 8
* Readiness Développeur
* MSDN :
o msdn.microsoft.com/en-us/library/cc288325.aspx
o msdn.microsoft.com/en-us/library/cc304133(VS.85).aspx
o msdn.microsoft.com/en-us/library/cc848894(VS.85).aspx
o msdn.microsoft.com/en-us/library/cc848893(VS.85).aspx

Veuillez vous connecter ou vous enregistrer pour rejoindre la conversation.

Plus d'informations
14 Avr 2010 07:51 #8 par chr!x
Réponse de chr!x sur le sujet Re:Plorblème affichage images IE
carpnokill95 écrit:

Internet Explorer 8 est disponible en téléchargement et certains sites web ne sont pas encore prêts pour Internet Explorer 8.


C'est bien ce qui me gène dans l'histoire. On renverse les rôles, et ça me désole. En théorie, c'est pas aux sites à s'adapter aux browsers. S'ils respectaient les standards, on en serait pas là !

Bon, je sèche sur ton problème. Je te conseillerai plutôt de te tourner vers un forum orienté WEB/IE, car là on semble toucher plus à une problématique propre à IE qu'à Kunena.

..:: Besoin d'aide ? Précisez les versions utilisées (Joomla/Kunena/addon) & donnez des liens vers votre pb - J'ai été efficace ? Cliquez sur ::..

Veuillez vous connecter ou vous enregistrer pour rejoindre la conversation.

  • carpnokill95
  • Visiteur
  • Visiteur
14 Avr 2010 08:20 #9 par carpnokill95
Réponse de carpnokill95 sur le sujet Re:Plorblème affichage images IE
oui je suis complètement d'accord avec toi !!!

je vais regarder cela, si je trouve une autre solution, je vous tiens au courant

merci quand même ;)

Veuillez vous connecter ou vous enregistrer pour rejoindre la conversation.

Plus d'informations
14 Avr 2010 11:08 #10 par chr!x
Réponse de chr!x sur le sujet Re:Plorblème affichage images IE
Sinon, au pire, t'as toujours cette solution , certes un peu extrémiste, mais fonctionnelle :side:

..:: Besoin d'aide ? Précisez les versions utilisées (Joomla/Kunena/addon) & donnez des liens vers votre pb - J'ai été efficace ? Cliquez sur ::..

Veuillez vous connecter ou vous enregistrer pour rejoindre la conversation.

  • carpnokill95
  • Visiteur
  • Visiteur
14 Avr 2010 12:35 #11 par carpnokill95
Réponse de carpnokill95 sur le sujet Re:Plorblème affichage images IE
oui je connaissais cette solution mais j'avoue pas très pratique vu le nombre de feuille de style (une par composent et module).

Mais il est vrai que cela peut être une solution vive Windobe lol :(

Veuillez vous connecter ou vous enregistrer pour rejoindre la conversation.

Plus d'informations
14 Avr 2010 20:15 #12 par chr!x
Réponse de chr!x sur le sujet Re:Plorblème affichage images IE
Histoire d'en avoir le coeur net, j'ai mis une image de 2560 x 1440 sur un post de mon forum . Elle est en locale. Elle s'affiche tout à fait normalement sous IE8, sans activer le mode de compatibilité. Démo :
Fais l'essai par toit même. Dis moi si le résultat est correct chez toi.

Dans l'affirmative :
* Je suppose que le pb vient de la template Joomla que tu utilises.
* Je te conseille de faire l'essai avec une template de base de Joomla, celle par défaut par exemple

Evidemment, si dans ce cas ça marche correctement, tu saura d'où vient le problème, et quand bien même ça t'aidera pas à le résoudre, au moins du sera que c'est ta template Joomla qui est à l'origine de cette situation, et non Kunena.

Dès lors, il sera temps de te tourner vers le support de RocketTheme pour le template Affinity .

Dernière chose : Il y a eu 11 releases de la template Affinity , avec une légion de bugs IE corrigés. Je ne saurai trop te conseiller de faire la mise à jour vers la dernière version. Extrait du changelog d'Affinity :
Code:
Legend: * -> Security Fix # -> Bug Fix + -> Addition ^ -> Change - -> Removed ! -> Note ------- 1.5.11 Release [19-February-2010] ------- # Fixed style6.css typo # Fixed safari bottom image issue in style2 # Fixed JomSocial Cyrllic symbols bug # JomSocial 1.6 fixes [1.6.287] # Fixed polls result styling # Added missing bottomenu divider in style2 # Fix for vert and horiz alignment not load from cookie. # IIS Fix for Request URI bug Changed Files: /css/extras.css /css/style6.css /css/template.css /html/mod_latestgroupwalls/default.php /html/com_community/activities.index.php /html/com_community/bookmarks.php /html/com_community/css/style.css /html/com_community/friends.invite.php /html/com_community/frontpage.guests.php /html/com_community/frontpage.index.php /html/com_community/frontpage.latestgroup.php /html/com_community/groups.create.php /html/com_community/guests.denied.php /html/com_community/inbox.write.php /html/com_community/profile.friends.php /html/com_community/profile.groups.php /html/com_community/profile.header.php /html/com_community/profile.privacy.php /images/style2/bottom-menu-m.png /rt_sectionrows.php /rt_util.php Added Files : /images/style2/horizmenu-div.png /html/com_community/register.profile.php ------- 1.5.10 Release [24-January-2010] ------- # JomSocial 1.6 fixes, merges and updates # Fixed roksortables issue Changed Files: /html/com_community/activities.index.php /html/com_community/admin.controls.php /html/com_community/bookmarks.php /html/com_community/css/style.css /html/com_community/files.upload.php /html/com_community/friends.invite.php /html/com_community/frontpage.guests.php /html/com_community/frontpage.index.php /html/com_community/frontpage.latestgroup.php /html/com_community/groups.adddiscussion.php /html/com_community/groups.addnews.php /html/com_community/groups.bulletinlist.php /html/com_community/groups.created.php /html/com_community/groups.invitefriends.php /html/com_community/groups.search.php /html/com_community/groups.uploadavatar.php /html/com_community/guests.denied.php /html/com_community/inbox.list.php /html/com_community/inbox.write.php /html/com_community/photos.htmluploader.php /html/com_community/photos.newalbum.php /html/com_community/profile.about.php /html/com_community/profile.edit.details.php /html/com_community/profile.friends.php /html/com_community/profile.groups.php /html/com_community/profile.header.php /html/com_community/profile.miniheader.php /html/com_community/profile.preferences.php /html/com_community/profile.privacy.php /html/com_community/register.index.php /html/com_community/search.advancesearch.php /html/com_community/search.php /html/com_community/toolbar.submenu.php /html/com_community/videos.search.php /html/com_community/wall.form.php /js/roksortable.js /templateDetails.xml Removed Files: /html/com_community/css/photouploader.css ------- 1.5.9 Release [15-November-2009] ------- # JomSocial Fixes 1.5.248 # Fixed 'Share this' styling # Fixed advanced search styling # Fixed profile upload page styling # Fixed profile preference styling # Fixed friends invite styling # Fixed formatting on privacy page # Fixed status update box # Fixed Terms of Use input styling # Fixed admin control toolbar (icons) # Fixed module styling # Fixes for php 5.3 Change Files: /css/extras.css /html/com_community/css/style.css /html/com_community/images/icons/icons-16x16.gif /html/com_community/friends.invite.php /html/com_community/profile.uploadavatar.php /html/com_community/register.index.php /html/com_community/search.advancesearch.php /rt_sectionrows.php /templateDetails.xml Added Files: /html/com_community/bookmarks.php /html/com_community/profile.privacy.php /html/com_community/profile.preferences.php ------- 1.5.8 Release [06-November-2009] ------- # Compatibility fixes for JomSocial 1.5.428 Change Files: /html/com_community/css/style.css /html/com_community/activities.index.php /html/com_community/admin.controls.php /html/com_community/register.index.php /html/com_community/frontpage.index.php /html/com_community/photos.htmluploader.php /html/com_community/search.advancesearch.php /html/com_community/frontpage.guests.php /html/com_community/profile.edit.php /html/com_community/files.upload.php /html/com_community/photos.newalbum.php /html/com_community/friends.invite.php /html/com_community/profile.header.php /html/com_community/inbox.write.php /html/com_community/profile.edit.details.php /templateDetails.xml ------- 1.5.7 Release [08-October-2009] ------- # Compatible with JomSocial 1.5 Change Files: /html/com_community/css/style.css /html/com_community/register.index.php /html/com_community/photos.newalbum.php ------- 1.5.6 Release [15-September-2009] ------- # Fixed broken styling for logout form # Fixed large font size in JomSocial form # Fixed validation error in edit form # Fixed layout issues in edit form # Fixed layout issues in registration form # Fixed form line-height issue in IE - Removed mod_syndicate override # Fixed RokTabs last item issue in Safari # Fixed RokBox login display issue in IE7 # Fixed duplicate modules issue Changed Files: /css/extras.css /css/template.css /css/template_ie7.css /html/com_community/css/style.css /html/com_user/login/default_logout.php /html/com_user/user/form.php /rt_sectionrows.php /templateDetails.xml Removed Files: /html/mod_syndicate ------- 1.5.5 Release [13-August-2009] ------- # Updated JomSocial overrides with minor updates and bug fixes Changed Files: /html/com_community/activities.index.php /html/com_community/frontpage.guests.php /html/com_community/frontpage.index.php /html/com_community/profile.header.php /html/com_community/search.advancesearch.php /html/com_community/videos.search.php /html/com_community/css/style.css /templateDetails.xml ------- 1.5.4 Release [11-August-2009] ------- # Updated K2 overrides and styling for compatibility with K2 2.0 final release Changed Files: /css/extras.css /css/style1.css /css/style2.css /css/style3.css /css/style4.css /css/style5.css /css/style6.css /css/template_ie6.css /templateDetails.xml Updated Directories: /html/com_k2 /html/mod_k2_comments /html/mod_k2_content /html/mod_k2_login /html/mod_k2_tools /images/social /images/system ------- 1.5.3 Release [25-July-2009] ------- # Fixed missing input images for password reset and username reminder pages # Fixed clear issue with a single K2 sub category ^ Change main1-main6 count code to shortened syntax # Fixed conditional for Restore Default Settings button # Fixed missing image in 2nd level 2 column dropdowns Changed Files: /index.php /rt_sectionrows.php /css/style1.css /css/style2.css /css/style3.css /css/style4.css /css/style5.css /css/style6.css /html/com_k2/templates/default/category.php /templateDetails.xml ------- 1.5.2 Release [09-July-2009] ------- # Additional menu fixes for better handling of dropdowns in single and multi column modes # Fixed logo module styling # Fixed syntax error in section blog layout # Fixed side menu formatting inconsistency # Fixed cropped RokStories article text in IE6 and IE7 # Fixed call time pass by reference error message which displayed in certain instances # Tweaked rokbox login module styling for better display when not using a module title Changed Files: /rt_sectionrows.php /css/template.css /css/style1.css /css/style2.css /css/style3.css /css/style4.css /css/style5.css /css/style6.css /css/template_ie6.css /css/template_ie7.css /html/com_content/section/blog.php /templateDetails.xml ------- 1.5.1 Release [02-July-2009] ------- # Show/Hide frontpage component parameter fixed # Fixed Jomsocial spacing issue # Fixed offset single column menu dropdown issue # Joomla 1.5.12 override updates Changed Files: /index.php /rt_sectionrows.php /css/template.css /html/com_community/css/style.css Changed Directories: /html/com_contact /html/com_content /html/com_user /html/mod_newsflash ------- 1.5.0 Release [01-July-2009] -------
Ca laisse rêveur.

J'espère que tout cela t'aidera à avancer. :)

..:: Besoin d'aide ? Précisez les versions utilisées (Joomla/Kunena/addon) & donnez des liens vers votre pb - J'ai été efficace ? Cliquez sur ::..

Veuillez vous connecter ou vous enregistrer pour rejoindre la conversation.

Modérateurs: serge
Temps de génération de la page : 1.008 secondes
Propulsé par Kunena