Remplacement image de fond
Plagz
-
Plagz -
Plagz -
Bonjour,
Je suis administrateur d'un forum et j'aimerais modifier le thème.
Pour le moment mon forum est basé sur un thème par défaut. Je souhaiterais en modifier l'image de fond.
Voici la partie du code qui correspond.
body {
/* Text-Sizing with ems: http://clagnut.com/blog/348/ */
font-family: "Verdana", Helvetica, Arial, sans-serif;
color: #FFF;
background-image:url(images/fond.jpg);
background-attachment:fixed;
background-repeat:no-repeat;
font-size: 62.5%; /* This sets the default font size to be equivalent to 10px */
margin: 0;
Que dois-je mettre à la place de images/fond.jpg pour avoir ma propre image ? J'utilise l'éditeur de code proposé via le panneau d'administration
Merci d'avance
Je suis administrateur d'un forum et j'aimerais modifier le thème.
Pour le moment mon forum est basé sur un thème par défaut. Je souhaiterais en modifier l'image de fond.
Voici la partie du code qui correspond.
body {
/* Text-Sizing with ems: http://clagnut.com/blog/348/ */
font-family: "Verdana", Helvetica, Arial, sans-serif;
color: #FFF;
background-image:url(images/fond.jpg);
background-attachment:fixed;
background-repeat:no-repeat;
font-size: 62.5%; /* This sets the default font size to be equivalent to 10px */
margin: 0;
Que dois-je mettre à la place de images/fond.jpg pour avoir ma propre image ? J'utilise l'éditeur de code proposé via le panneau d'administration
Merci d'avance
A voir également:
- Remplacement image de fond
- Remplacement coco - Accueil - Réseaux sociaux
- Coco.fr remplacement - Accueil - Réseaux sociaux
- Image iso - Guide
- Enlever le fond d'une image - Guide
- Comment mettre une vidéo en fond d'écran - Guide
4 réponses
Il faut héberger l'image. Tu auras ensuite l'url et il te suffira de la remplacer dans le CSS.
https://www.google.com/search?channel=fs&q=h%C3%A9bergeur+image&ie=utf-8&oe=utf-8&gws_rd=ssl#sclient=psy&hl=fr&safe=off&source=hp&q=h%C3%A9bergeur+image&aq=f&aqi=&aql=&oq=h%C3%A9bergeur+image&pbx=1&fp=671ea1b2d59ff0ad
https://www.google.com/search?channel=fs&q=h%C3%A9bergeur+image&ie=utf-8&oe=utf-8&gws_rd=ssl#sclient=psy&hl=fr&safe=off&source=hp&q=h%C3%A9bergeur+image&aq=f&aqi=&aql=&oq=h%C3%A9bergeur+image&pbx=1&fp=671ea1b2d59ff0ad
Donc au lieu de
body {
/* Text-Sizing with ems: http://clagnut.com/blog/348/ */
font-family: "Verdana", Helvetica, Arial, sans-serif;
color: #FFF;
background-image:url(images/fond.jpg);
background-attachment:fixed;
background-repeat:no-repeat;
font-size: 62.5%; /* This sets the default font size to be equivalent to 10px */
margin: 0;
ça donnerai
body {
/* Text-Sizing with ems: http://clagnut.com/blog/348/ */
font-family: "Verdana", Helvetica, Arial, sans-serif;
color: #FFF;
background-image:url(http://img132.imageshack.us/i/wowcataclysmk.jpg/);
background-attachment:fixed;
background-repeat:no-repeat;
font-size: 62.5%; /* This sets the default font size to be equivalent to 10px */
margin: 0;
?
body {
/* Text-Sizing with ems: http://clagnut.com/blog/348/ */
font-family: "Verdana", Helvetica, Arial, sans-serif;
color: #FFF;
background-image:url(images/fond.jpg);
background-attachment:fixed;
background-repeat:no-repeat;
font-size: 62.5%; /* This sets the default font size to be equivalent to 10px */
margin: 0;
ça donnerai
body {
/* Text-Sizing with ems: http://clagnut.com/blog/348/ */
font-family: "Verdana", Helvetica, Arial, sans-serif;
color: #FFF;
background-image:url(http://img132.imageshack.us/i/wowcataclysmk.jpg/);
background-attachment:fixed;
background-repeat:no-repeat;
font-size: 62.5%; /* This sets the default font size to be equivalent to 10px */
margin: 0;
?