... |
... |
@@ -15,7
+15,7 @@ |
15 |
15 |
background-image: url('https://beispiel.de/pfad/zum/bild/logo.png'); /* Auswählen des Bildes per URL */ |
16 |
16 |
/* Positionierung des Bildes */ |
17 |
17 |
background-size: auto 25px; /* Das Bild hat 25 Pixel Höhe und die Breite wird automatisch passend zum Seitenverhältnis des Bildes ermittelt */ |
18 |
|
- padding-top: 60px; /* Die Höhe des Headers wird auf 60 Pixel festgelegt */ |
|
18 |
+ height: 60px; /* Die Höhe des Headers wird auf 60 Pixel festgelegt */ |
19 |
19 |
background-repeat: no-repeat; /* Das Bild wird nur einmal angezeigt */ |
20 |
20 |
background-position-x: calc(100% - 30px); /* Das Bild wird 30 Pixel vom rechten Rand positioniert */ |
21 |
21 |
background-position-y: 20px; /* Das Bild wird 20 Pixel vom oberen Rand positioniert */ |
... |
... |
@@ -29,7
+29,7 @@ |
29 |
29 |
{{code language="css"}} |
30 |
30 |
.modern .XHeader { |
31 |
31 |
background-image: url('../../../formcycle/form/includes/ressource?pid=1234&name=headerbild.png'); /* Auswählen des Bildes per relativer URL zur Formularressource */ |
32 |
|
- background-size: 100% 100%; /* Bild über die gesamte Headergröße zeichnen*/ |
|
32 |
+ background-size: 100% 100%; /* Bild über die gesamte Headergröße zeichnen */ |
33 |
33 |
} |
34 |
34 |
{{/code}} |
35 |
35 |
|
... |
... |
@@ -39,8
+39,8 @@ |
39 |
39 |
|
40 |
40 |
{{code language="css"}} |
41 |
41 |
.XHeader { |
42 |
|
- background-image: url(data:image/gif;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAAJCAIAAABv85FHAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAAEnQAABJ0Ad5mH3gAAAA5SURBVBhXdY1LFgAgCAK5/6UNQ6mFzkLj4wuxkxlQDT5MSrue5onbXjKimJTUIr8rurL9Z2u+G4g4ozy8RKSwCIwAAAAASUVORK5CYII=); |
43 |
|
- background-repeat: no-repeat; /* Das Bild wird nicht wiederholt */ |
|
42 |
+ background-image: url(data:image/gif;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAAJCAIAAABv85FHAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAAEnQAABJ0Ad5mH3gAAAA5SURBVBhXdY1LFgAgCAK5/6UNQ6mFzkLj4wuxkxlQDT5MSrue5onbXjKimJTUIr8rurL9Z2u+G4g4ozy8RKSwCIwAAAAASUVORK5CYII=); /* Auswahl eines Bildes per Base64-String*/ |
|
43 |
+ background-repeat: no-repeat; /* Das Bild wird nur einmal angezeigt */ |
44 |
44 |
background-position-x: 10px; /* Positionierung in horizontaler Richtung */ |
45 |
45 |
background-position-y: 10px; /* Positionierung in vertikaler Richtung */ |
46 |
46 |
background-size: auto 40px; /* Größe des Bildes: 40px hoch und so breit, wie es das Seitenverhältnis des Bildes vorgibt */ |