"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.



₪₪₪ ₪₪ ₪ ₪₪ ₪₪₪



Background "COLOR" Example <style type="text/css">
.K {Background Color}

body {background-color: Your Color;}
table, tr, td {background-color: transparent; border: none;}
</style>


A Simple Background "Image" Example <style type="text/css">
.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.





₪₪₪ ₪₪ ₪ ₪₪ ₪₪₪


₪₪₪ ₪₪ ₪ ₪₪ ₪₪₪


^° Die Weisse Farbe Der Mittel-Tabelle löschen°^
^° Remove The White Middle Space °^


Make The White Space In Middle Of Page Transparenttable, tr, td {background-color:transparent; border:none;}


^° Die Weisse Farbe Der Mittel-Tabelle Behalten°^
^° Keep The White Middle Space °^


Keep The White Space In Middle Of Pagetable, tr, td {border:none;}




₪₪₪ ₪₪ ₪ ₪₪ ₪₪₪


₪₪₪ ₪₪ ₪ ₪₪ ₪₪₪


^° Hintergrund-Bild Und Farbe Einfügen °^
^° Adding a Background Image And Color°^

- 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:


Background Code Example of a centered, fixed, non-repeated background image:

<style type="text/css">
.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>





"CSS Hintergrund Eigenschaften"
"CSS Background Properties"



Background Repeat Hintergrund-Wiederholung.

Non-repeated Background background-repeat: no-repeat;

Repeated Background background-repeat: repeat;

Horizontally Repeated Background background-repeat: repeat-x;

Vertically Repeated Background background-repeat: repeat-y;


Background Attachment Regelt ob der Hintergrund "Stehen Bleibt" oder "Mitscrollt".

Fixed Background background-attachment: fixed;

Scrollable Background background-attachment: scroll;


Background Position

background-position: center center;

Possible Values:
Top Left Top Center Top Right
Center Left Center Center Center Right
Bottom Left Bottom Center Bottom Right
top left; / top center; / top 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.



₪₪₪ ₪₪ ₪ ₪₪ ₪₪₪


₪₪₪ ₪₪ ₪ ₪₪ ₪₪₪