web-dev-qa-db-fra.com

Comment placer un fond d'écran statique dans mon thème Tumblr?

Comment placer un papier peint statique dans ce thème HTML?

http://static.tumblr.com/taepiis/5SFln832d/theme.txt

2
JayNpc

Changer ce bloc:

body {
    background: #fafafa url('http://static.tumblr.com/l3zugnz/7KJkvwe70/bg.png') fixed repeat-x 0 0;
    min-width: 1000px;
}

lire:

body {
    background: #fafafa url('http://path.com/to/your/image.jpg') fixed no-repeat 0 0;
    min-width: 1000px;
}

Remplacez http://path.com/to/your/image.jpg par le chemin d'accès réel à votre nouvelle image d'arrière-plan. Vous pouvez télécharger la nouvelle image d’arrière-plan sur la page de téléchargement de fichier statique de tumblr et utiliser l’URL qu’elle vous donne.

1
Nick