lchavee Posted November 17, 2012 Share Posted November 17, 2012 Bonjour à tous, Voilà, je suis en train de développer une boutique avec Prestashop 1.5.2. J'ai "override" le fichier css du module "productscategory" en créant un nouveau fichier "css/modules/productscategory/productscategory.css" dans mon thème. Tout fonctionne asuf lorsque j'active l'option CCC pour le CSS. Prestashop ne prend plus en compte la première déclaration qui se trouve dans mon fichier css. Par exemple : h2.productscategory_h2 { margin:16px 0 20px 0; width:285px; height:24px; padding:10px 0 10px 25px; font-size:14px; color:#6c6c6c; display:block; background:url('../../../img/sprite_copines2.png') no-repeat 0px -424px; } h2.productscategory_h2 span { font-size:15px; color:#d03656; } Il ne prendra pas en compte la déclaration qui concerne "h2.productscategory_h2" Donc pour le moment, j'ai bidouillé en mettant une déclaration factice au début de mon fichier (voir ci-dessous). h2.jeneteprendpaencompte { font-family: arial,sans-serif; } h2.productscategory_h2 { margin:16px 0 20px 0; width:285px; height:24px; padding:10px 0 10px 25px; font-size:14px; color:#6c6c6c; display:block; background:url('../../../img/sprite_copines2.png') no-repeat 0px -424px; } h2.productscategory_h2 span { font-size:15px; color:#d03656; } Voilà la problème. Ai-je loupé une étape ou quoi que ce soit ? Si quelqu'un pouvait m'éclairer, ça serait sympa. Merci. 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