Heyho zsm.
Ich hab ein kleines Problem , unzwar möchte ich zwei div boxen nebeneinander machen. Also ein content und neben dem content eine box für Lastnews oder sowas.
Bei der googlesuche kam immer das gleiche raus.. float left und float right. Aber irgentwie klappt das bei mir nicht. Wenn ich float benutze verbuggt sich die ganze homepage.
http://reback.re.funpic.de/
Da seht ihrs.
Hier mal die stellen ausem CSS quelltext und html quelltext.
|
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
|
/* Content bereich */
#content {
font-family: "Arial";
font-size: 10pt;
text-align: left;
color: #000;
margin: 15px;
float: left;
}
#page {
width: 100%;
}
/* Boxen bereich */
#boxen {
font-family: "Arial";
font-size: 10pt;
float: right;
margin-right: 15px;
color: #000;
}
|
|
Quellcode
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<div id="page">
<div id="content">
<?php page_content(); ?>
</div>
<div id="boxen">
<?php page_load_addon("lastnews"); ?>
</div>
</div>
|