Ich habe den Code mal in meine global.css eingefügt,weil mir die Formatierung für das Modul sehr gut gefällt, jedoch beißt sich das irgendwas mit meiner main.css! Unten am Content is normalerweise noch ne Grafik mit abgerundeten Ecken und zwischen Content und Footer ist ein Abstand von 20 Pixeln. Was läuft da schief?
http://img526.imageshack.us/img526/7281/kontaktl.jpg
Und hier meine main.css
|
Quellcode
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
|
/* Design by Xethon for cms2day */
* { padding: 0; margin: 0; }
html, body {
font-family: Verdana;
font-size: 12px;
color: #fff;
height: 100%;
background: #7fcf48 url('../images/bg.jpg') repeat-x;
}
p {
padding: 10px 0;
}
h1 {
font-size: 14px;
font-weight: bold;
border-bottom: 1px dotted #C3C3C3;
margin-bottom: 10px;
}
a {
text-decoration: none;
color: #fff;
font-weight: bold;
}
a:hover {
color: #4dbd01;
}
hr {
border: none;
height: 1px;
background-color: #C3C3C3;
}
#logo a:hover {
color: #FFF;
}
/* WRAPPER */
#wrapper {
margin: 0 auto -50px;
width: 800px;
min-height: 100%;
height: auto !important;
height: 100%;
background-color: #FFF;
border-left: 1px solid #848484;
border-right: 1px solid #848484;
}
/* HEADER */
#header {
width: 800px;
height: 90px;
background-color: #FFF;
margin: 0 auto;
position: relative;
}
#logo {
width: 259px;
height:86px;
background-color: #FFF;
position: absolute;
top: 0;
left: 0;
}
#suchbox {
position: absolute;
height: 72px;
width: 165px;
top: 9px;
right: 10px;
background-image: url('../images/search.jpg');
}
#suche {
position: absolute;
top: 15px;
left:10px;
}
#modul_suche p {
padding: 8px 0;
}
#addon_suche p {
padding: 2px 0;
}
/* NAVI */
#navigation {
width: 800px;
background-image: url('../images/navi.jpg');
padding: 10px 0;
margin: 0 auto;
text-align: center;
}
#navigation li {
display: inline;
list-style-type: none;
}
#navigation a {
padding: 9px 14px;
}
#navigation a:active {
background-color: #4dbd01;
color: #fff;
}
#navigation a:hover {
background-color: #4dbd01;
color: #fff;
}
/* CONTENT */
#content {
background: #FFF;
padding: 20px 0;
}
.box {
width: 780px;
background: #3D3D3D url('../images/top.jpg') top left no-repeat;
margin: auto;
}
.box2 {
width: 750px;
background: url('../images/bottom.jpg') bottom left no-repeat;
padding: 15px;
}
/* FOOTER */
#footer {
width: 780px;
margin: 0 auto;
height: 50px;
clear: both;
background: url('../images/footer.jpg') repeat-x;
text-align: center;
.footer, .push {
height: 50px;
}
|