Habe geschnüffelt, ausprobiert und habe versagt.
Ich finde meinen Fehler einfach nicht ...
Mein Index.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
40
41
42
43
44
45
46
47
48
49
50
51
52
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xml:lang="en" xmlns="http://www.w3.org/1999/xhtml" lang="en">
<head>
<meta http-equiv="Content-type" content="text/html; charset=us-ascii" />
<title>Voltiteam Monheim</title>
<link type="text/css" href="css/main.css" media="screen" charset="utf-8" rel="stylesheet" />
<link type="text/css" href="css/text.css" media="screen" charset="utf-8" rel="stylesheet" />
<?php page_header(); ?>
</head>
<body>
<div id="layout">
<div id="header">
<h1>Voltiteam-Monheim</h1>
<div id="menu">
<?php page_dropdown("0"); ?>
</div>
</div>
<div id="content-container">
<div id="content">
<?php page_content(); ?>
</div>
<div id="news">
<?php page_load_addon("suche"); ?>
<h2>News</h2>
<?php page_load_addon("lastnews"); ?>
</div>
</div>
<div id="footer">
<img src="<?php template_dir(); ?>/<?php echo $takeTPL; ?>images/rsv.png" style="float:left; width:57px;height:79px; margin-right:15px;" alt="RSV-Monheim"/>
<?php page_footer(); ?>
</div>
</body>
</html>
|
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
|
body {
background: #ebebeb url(../_img/woodbg.png) fixed repeat;
font-size: 12px;
font-family: VERDANA,ARIAL,HELVETICA;
color: #564b47;
margin: 20px 60px 20px 60px;
text-align: center;
}
#layout {
width: 900px;
margin: 0;
padding: 0;
}
#header {
width: 890px;
margin: 0px 0px 5px 0px;
padding: 5px;
text-align: left;
background: #ffffff;
}
#menu {
width: 900px;
font-weight: bold;
width: ;
}
#menu ul {
padding: 6px 0px 7px 0px;
margin: 0;
text-align: center;
}
#menu ul li {
display: inline;
}
#menu ul li a {
color: #564b47;
padding: 6px 3px 4px 3px;
margin-right: 20px;
text-decoration: none;
border-bottom: 3px solid #e1ddd9;
}
#menu ul li a:hover, #menu ul li a.selected {
border-bottom-color: #564b47;
}
#content-container {
float: left;
width: 100%;
background: #FFF;
}
#content {
clear: left;
float: left;
width: 689px;
padding: 5px;
margin: 0;
border-right: 1px solid #e1ddd9;
display: inline;
}
#news {
float: right;
width: 190px;
padding: 5px;
margin: 0;
display: inline;
}
#footer {
float: left;
width: 890px;
margin: 5px 0px 0px 0px;
padding: 5px;
text-align: left;
background: #ffffff;
}
|
Das Template befindet sich im Ordner /includes/templates/Voltiteam-Monheim/ ...
Die Ordner-Struktur sieht wie folgt aus:
|
Quellcode
|
1
2
3
|
Voltiteam-Monheim
css
imagesindex.htmlinfo.php
|