Jump to content

(résolu) background différent home/pages


Recommended Posts

Bonjour,

 

J'aimerais avoir un background avec une image différente entre ma page d'accueil et les autres pages.

Je pense que je dois l'indiquer dans le header.tpl mais je ne sais pas comment intégrer du code css et si c'est possible du coup. J'ai déja fait un changement pour les colonnes :

 

<!-- Center -->
			 {if $page_name eq 'index'}
						  <div id="center_column" class=" grid_9">
			{else}
						  <div id="center_column" class="grid_7">
			{/if}

 

 

Il faudrait que je l’insère dans le div? ou ailleurs?

 

Merci d'avance,

Cordialement

Edited by Evengeline (see edit history)
Link to comment
Share on other sites

Bonjour,

 

chaque page possède un body id différent ! exemple page accueil <body id="index" class="">

 

donc dans le fichier style globall.css vous pouvez cibler les body pour chaque page....

 

body{background: #fff url('../img/fond_general.png') repeat-x 0 0;}

body#index{background: #fff url('../img/fond_accueil.png') repeat-x 0 0;}

body#category{background: #fff url('../img/fond_categories.png') repeat-x 0 0;}

body#my-account{background: #fff url('../img/fond_moncompte.png') repeat-x 0 0;}

 

etc etc....

 

a+

Edited by Stéphane Chonez (see edit history)
Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...