2 Background - mynimi/Hearts-in-Wonderland GitHub Wiki
Hintergrund
Das Hintergrundbild wir an zwei Stellen in Hearts in Wonderland verwendet. Zum einen als Hintergrund und zum anderen als Hintergrund beim Datum. Beides kannst du ändern.
- Lade das Bild hoch, dass du verwenden willst und kopiere den Link.
- Gehe in dein Blogger Dashboard unter Vorlage und öffne den Code
- Für den Hintergrund ändere den Link in der Klammer. Falls dein Bild den ganzen Bildschirm abdeckt, solltest du die zweite Zeile mit
background-size
entfernen
body{
background: url(http://colourlovers.com.s3.amazonaws.com/images/patterns/3948/3948002.png?1382819655) repeat fixed ;
background-size: 150px;
}
- Für den Datumhintergrund tust du das gleiche an folgender Stelle
.date-border{
background: url(http://colourlovers.com.s3.amazonaws.com/images/patterns/3948/3948002.png?1382819655) repeat;
background-size: 100px;
}
- Speichern und der Hintergrund ist geändert.
Background
The Background image is used at two places in Hearts in Wonderland. First as the background and second in the date. You can change both.
- Upload your image and copy the link
- Go into the Blogger Dashboard and open your code (within the template tab)
- To change the background, replace the link within the brackets. If your image is to be bigger than mine, you might want to remove the second line.
body{
background: url(http://colourlovers.com.s3.amazonaws.com/images/patterns/3948/3948002.png?1382819655) repeat fixed ;
background-size: 150px;
}
- For the date background, look for the following and repeat the same steps from above
.date-border{
background: url(http://colourlovers.com.s3.amazonaws.com/images/patterns/3948/3948002.png?1382819655) repeat;
background-size: 100px;
}
- Save and the background is changed.