abelazi Posted February 9, 2009 Share Posted February 9, 2009 Bonjour,Comment changer les couleur de l'arrière plan page d'accueil et les autres pages. Aussi les couleurs des liens etc....Merci de votre aide. Bonne journée Link to comment Share on other sites More sharing options...
Ronie59 Posted February 9, 2009 Share Posted February 9, 2009 idem je cherche à mettre une texture en fond pour l'ensemble de mon site mais je ne trouve pas l'endroit ou ajouter le code dans le fichier global.css Link to comment Share on other sites More sharing options...
Cédric Girard Posted February 9, 2009 Share Posted February 9, 2009 BonsoirIl s'agit là des bases absolues du CSS. Je vous conseille d'aller voir les tutoriels de sites comme Alsacreations ou Pompage.net pour vous familiariser avec les notions de bases.Pour répondre à vos deux questions d'un coup : il faut trouver dans votre fichier CSS la balise "body" et lui attribuer un background. Comme ça (par exemple) :Colore le fond de la page en rouge vif : body { background: #ff0000; } Place une texture répétée en haut de la page seulement, avec un fond blanc par ailleurs : body { background: #ffffff url(img/image-de-fond.jpg) repeat-x scroll top; } Place une texture placée au centre de l'écran mais accolée en haut, avec un fond bleu par ailleurs : body { background: #0000ff url(img/image-de-fond.jpg) no-repeat scroll center top; } etc...Attention, le chemin d'accès des images au niveau des CSS se fait toujours à partir du fichier CSS, pas relativement à la racine du site comme c'est le cas en PHP ou en HTML ;-) Link to comment Share on other sites More sharing options...
abelazi Posted February 10, 2009 Author Share Posted February 10, 2009 Bonjour,Merci pour votre réponse.Mais qu'elle fichier que je doit changer pour que la page d'accueil et les autres page de site change d'arrière plan ? Car dans le dossier CSS il y a beaucoup des fichiers.Merci de votre aide Link to comment Share on other sites More sharing options...
Patric Posted February 10, 2009 Share Posted February 10, 2009 /themes/ton_theme/css/global.css Link to comment Share on other sites More sharing options...
yvesbj Posted January 26, 2010 Share Posted January 26, 2010 Bonjour,de mon côté, j'aimerais coller mon fond d'écran en bas de page.Voici mon code : body { background: #ffffff url(images/fond.gif) repeat-x scroll footer; margin-left: 0px; margin-top: 5px; margin-right: 0px; margin-bottom: 0px; Pourriez vous m'aider s'il-vous-plais ? Link to comment Share on other sites More sharing options...
Atch Posted January 26, 2010 Share Posted January 26, 2010 Bonjour,Avez vous essayé : background: #ffffff url(../img/fond.gif) repeat-x left bottom; V++Atch Link to comment Share on other sites More sharing options...
yvesbj Posted January 26, 2010 Share Posted January 26, 2010 Merci beaucoup c'est ça !! Link to comment Share on other sites More sharing options...
Assad Posted March 29, 2010 Share Posted March 29, 2010 Salut,j'ai un petit problème avec l'arriére plant. J'ai mis cela : background: #ffffff url(http://127.0.0.1/boutique/img/fond.jpg) repeat-x scroll top;mais le problème c'est que cela ne s'affiche pas dans tout l'ecran mais que le 2/3 du haut de l'ecran.Si une personne a la solution.Merci. Link to comment Share on other sites More sharing options...
cosmeticpascher Posted May 14, 2011 Share Posted May 14, 2011 Bonjour,Ne voulant pas toucher moi même au code, existe t'il un module permettant de changer l'arrière plan par une image? 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