mmomobis Posted March 29, 2012 Share Posted March 29, 2012 Salut, Ci joint deux captures d'écran sous IE9 qui pose problème avec l'icône "nouveau" sur l'image qui est mal positionnée tandis que sur Firefox tout est parfait, y aurait il une modif manuelle sur le code à effectuer assez rapidement ? merci d'avance. Link to comment Share on other sites More sharing options...
Dev On Web Posted March 29, 2012 Share Posted March 29, 2012 Tout à fait, ce qui est logique à la vue du CSS pour cette propriété : "-moz-transform: rotate(45deg);" Il n'y a que du CSS 3 pour Firefox et non pour les autres navigateurs Par conséquent, le bandeau s'affiche sans inclinaison sur tous les autres navigateurs autres que Mozilla. Pour gérer tous les navigateurs, il faudrait ces styles là : transform: rotate(45deg); -ms-transform: rotate(45deg); /* IE 9 */ -webkit-transform: rotate(45deg); /* Safari and Chrome */ -o-transform: rotate(45deg); /* Opera */ -moz-transform: rotate(45deg); /* Firefox */ A voir si ça fonctionne, c'est plus un truc de graphiste ça Link to comment Share on other sites More sharing options...
Dev On Web Posted March 29, 2012 Share Posted March 29, 2012 Note : si ça marche, il faudra poster cette amélioration sur la forge afin que les développeurs mettent à jour cela. J'attends votre retour ! Bon ben j'ai testé moi-même finalement^^ Ça fonctionne bien sur IE9 Je fais remonter ça ! Reporté ici : http://forge.prestashop.com/browse/PSFV-746 1 Link to comment Share on other sites More sharing options...
mmomobis Posted March 29, 2012 Author Share Posted March 29, 2012 Salut, Et la modif ce fait sur quel(s) fichier(s) ? merci d'avance. Link to comment Share on other sites More sharing options...
Dev On Web Posted March 29, 2012 Share Posted March 29, 2012 homefeatured.css dans le dossier du module en question. La classe à modifier est indiquée sur la forge. Link to comment Share on other sites More sharing options...
mmomobis Posted March 29, 2012 Author Share Posted March 29, 2012 Salut, Aussi bizarre que celà puisse paraitre, je viens de faire la modif et pas de changement chez moi, popuvez vous mettre le fichier modifié en Pièces jointes, merci d'avance. @++ Link to comment Share on other sites More sharing options...
Dev On Web Posted March 29, 2012 Share Posted March 29, 2012 Mon fichier est grandement modifié pour une maquette précise, il ne vous serait donc d'aucune utilité. Cependant je pense savoir d'où vient votre problème : Allez dans l'onglet performance et désactivez le cache et forcez la compilation du template Smarty. Ensuite, vous devriez voir vos modifications apparaître après un petit ctrl+f5 sur votre navigateur. Link to comment Share on other sites More sharing options...
Dev On Web Posted March 29, 2012 Share Posted March 29, 2012 En passant, il faut faire la même modification sur le CSS du thème "product_list.css" : #product_list li span.new { display: block; position: absolute; top: 15px; right:-30px; padding: 1px 4px; width: 101px; font-size:10px; color: #fff; text-align: center; text-transform: uppercase; transform: rotate(45deg); -moz-transform: rotate(45deg); -webkit-transform: rotate(45deg); -o-transform:rotate(45deg); -ms-transform: rotate(45deg); background-color: #990000 } Link to comment Share on other sites More sharing options...
mmomobis Posted March 29, 2012 Author Share Posted March 29, 2012 Salut, Voilà problème réglé, merci encore, il fallait effectivement modifier ce second fichier @++ Link to comment Share on other sites More sharing options...
Ninja Of Web Posted April 10, 2012 Share Posted April 10, 2012 Bonjour, Merci Mmomobis de nous avoir remonté ce Bug et merci Ivoire pour la résolution de celui-ci ! C'est corrigé sur le SVN. A++ Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now