Hi,
bin gerade dabei mein erstes eigenes Design zu entwickeln, um dieses mit cms2day zu benutzen.
Nun hänge ich an dem Punkt, an dem ich die ganzen PHP-Elemente einbinden muss. Wie gehe ich da ran?
Hier mal mein bisheriger Code:
|
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
|
HTML:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de" lang="de">
<head>
<?php page_header(); ?>
</head>
<body>
<div class="wrapper">
<div class="push"></div>
</div>
<div id="footer">
<?php page_footer(); ?>
</div>
</body>
</html>
|
|
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
|
CSS:
/* - Template by Xethon for cms2day - */
* {
margin: 0;
padding: 0;
}
html, body {
height: 100%;
text-align: center;
color: #000;
background: #c3c3c3 url('../images/background.jpg') repeat-x top;
font-family: Verdana;
font-size: 11px;
}
a {
text-decoration: none;
color: #c3c3c3;
}
.wrapper {
min-height: 100%;
height: auto;
height: 100%;
margin: 0 auto -50px;
}
.footer, .push {
height: 50px;
}
#footer {
height: 50px;
background: #3d3d3d;
line-height: 50px;
}
|
Wie bringe ich da jetzt zum Beispiel die Menüpunkte in meine Navigation rein?
Hier nochmal ein Screenshot vom bisherigen Design damit ihr ne bildliche Vorstellung habt.
http://img693.imageshack.us/i/seitej.jpg/
Ich hoffe ihr könnt mir dabei ein wenig helfen. Dankeschön