"Background"
- Ersetze "Your Image URL" oder "Your Color" in den folgenden Codes
und füge den Code deiner Wahl in die "Über Mich/Bio" Sektion ein.
- Replace in the fallowing codes "Your Image URL" or "Your Color",
and put the code of your choice in "About Me/Bio" section.
.K {Background Image}
body {background-image: url(Your Image URL);}
table, tr, td {background-color: transparent; border: none;} </style>
Note:
- Wenn das Bild kleiner als die Seite ist, wird es sich wiederholen.
- If the image is smaller than the page, the image will repeat itself.
- Alles was du brauchst, ist ein Bild vorzugsweise in der Grösse von "1024x768" hochzuladen und die URL des Bildes in den folgenden Code einzufügen. - All you need is to upload an image with preferably size; "1024 x 768", and insert the URL to the below code: |
.K {Background Color and Image}
body {
background-color: Your Color !important;
background-image: url(Your Image URL);
background-repeat: no-repeat;
background-attachment: fixed;
background-position: center center;}
table, tr, td {
background-color: transparent; border:none;}
</style>
background-position: center center;
top left; / top center; / top right;
center left; / center center / center right;
bottom left; / bottom center; / bottom right;
center left; / center center / center right;
bottom left; / bottom center; / bottom right;
If you only specify one keyword, the second value will be "center".
Or:
40% 60%;
The first value is the horizontal position and the second value is the vertical.
Default value:
0% 0%; = top left;
e.g. values:
50% 50%; = center center;
100% 100%; = bottom right;
Or:
40px 30px; / 4cm 3cm; / 40mm 30mm; etc.