dukofo Posted October 12, 2013 Share Posted October 12, 2013 Bonjour à tous. Voila tout est dans le titre, je voudrais changer le background color d'une page CMS en l'occurence celle de la page Livraison. Comment faire ? Merci de vos réponses. Link to comment Share on other sites More sharing options...
dukofo Posted October 13, 2013 Author Share Posted October 13, 2013 Une réponse quelqu'un ? Merci. Link to comment Share on other sites More sharing options...
Szed Posted October 14, 2013 Share Posted October 14, 2013 (edited) Tu peux cibler en CSS une page CMS de cette façon : body#cms{ background:#ff0000; //ta couleur } Par contre, tu n'auras pas de moyen simple de cibler uniquement la page livraison... Sauf si tu modifie la balise body dans le header.tpl, pour lui rajouter une classe si l'on est sur la page livraison .Par exemple (avec une page livraison ayant pour ID 7) : <body {if isset($page_name)}id="{$page_name|escape:'htmlall':'UTF-8'}"{/if} class="{if $hide_left_column}hide-left-column{/if} {if $hide_right_column}hide-right-column{/if} {if $content_only} content_only {/if} {if $smarty.get.id_cms==7}page-livraison{/if}"> Je n'ai pas testé, mais selon ce topic, $smarty.get.id te renverrais l'id de la page. Il resterait juste à faire en CSS : body.page-livraison{ background:#ff0000; //ta couleur } Edited October 14, 2013 by Szed (see edit history) 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