Jump to content

[Solved] connaisseurs en css SVP


Guest

Recommended Posts

bonjour

 

bizarre, j'ai écrit ce message et je l'ai envoyé, et soudain il a disparu

je ne sais si il a été effacé ou bien j'ai halluciné

 

alors à nouveau

comment faire pour

- insérer une image de fond pour l'entête de la page (là où il y le logo, la monnaie, etc...)

- changer la couleur du background sans utiliser d'images de fond

 

je sais que si je cherche je finirais par trouver mais je veux que vous fassiez gagner du temps SVP

 

merci

Link to comment
Share on other sites

Bonjour,

 

Dans thèmes >> default >> Css >> styles.css

 

Pour l'image de fond:

 

Rechercher >>>  /* General */  <<<

Puis remplacer l'original par :

 

body {

margin: 20px 0 0 0;

padding: 0;

font-family: Arial, Tahoma, Helvetica, sans-serif;

font-size: 12px;

color: #000;

background: transparent;

background-image: url("../img/fond.png");

background-repeat: no-repeat;

}

 

Pour modifier la couleur de fond c'est tout simplement: Color: #000  mais pour cela il faudra supprimé :

 

        background-image: url("../img/fond.png");

background-repeat: no-repeat;

Link to comment
Share on other sites

Bonjour

 

 

Pour modifier la couleur de fond c'est tout simplement: Color: #000  mais pour cela il faudra supprimé :

 

        background-image: url("../img/fond.png");

background-repeat: no-repeat;

 

Attention : Color modifie la couleur du texte, pour la couleur du font c'est background-color : #123456; qu'il faut rajouter.

 

Sinon pour la RC2 c'est pareil

 

dans /themes/[nom du theme]/css/global.css

ligne 17

	background: white;

devient

	background: red url(http://www1.istockphoto.com/file_thumbview_approve/2489376/1/istockphoto_2489376_seamless_patern.jpg);

 

pour plus d'info : http://www.yoyodesign.org/doc/w3c/css2/colors.html

 

Cordialement

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...