Bei meiner Seite möchte ich den Informations-Fluss von links oben nach rechts unten beibehalten. Befehle wie „position: absolute“ möchte ich daher nicht nutzen, sondern der HTML-Code soll ‚floaten‘.
HTML Version (mein aktueller Nachbau der Seite, ohne Joomla)
http://dl.dropbox.com/u/645462/000_tmp/000_html_version_01.png
Problem: Beim Zusammenschieben des Browsers überlagern sich die DIVs nicht.
http://dl.dropbox.com/u/645462/000_tmp/000_html_version_02.png
Im Original sieht das so aus:
http://dl.dropbox.com/u/645462/000_tmp/000_joomla_version_01.png
So hätte ich es gern wieder:
http://dl.dropbox.com/u/645462/000_tmp/000_joomla_version_02.png
CSS (Auszüge)
[CODE]#all
{
background-color: #c20a0a;
font-size: 0.95em;
margin: 0 auto;
height: 200%;
max-width: 993px;
padding: 10px 6px 6px 6px;
text-align: left;
-moz-border-radius-topleft: 10px;
-moz-border-radius-topright: 10px;
}
#navi_element_left {
width: 194px;
min-height: 1px;
padding: 3px 0 3px 6px;
border-bottom: solid 2px #cccccc;
border-left: solid 6px #cccccc;
color: #000000;
background: #e6e6e6;
margin: 0 0 10px 0;
text-decoration: none;
}
#navi_element_left:hover
{
color: #ffffff;
background: #333333;
border-bottom: solid 2px #333333;
border-left: solid 6px #333333;
}
#welcome_area {
background: #ffffff;
width: 91px;
font-family: helvetica, arial;
margin: 5px 20px 0 -15px;
font-size: 0.7em;
position: relative;
min-height:520px;
float:left;
}
#main_content {
background: #ffffff;
width: 48%;
font-family: helvetica, arial;
margin: 0 25px 0 0;
max-width:555px;
min-width:20%;
font-size: 1em;
padding: 0px 20px 20px 20px;
position: relative;
min-height:520px;
float:left;
}
#banner_right {
float: left;
}
[/CODE]
HTML (Auszug aus der index.php)
[CODE]
Kann mir jemand sagen, was ich im Code machen muss, damit sich die DIVs bis zu einem gewissen Grad überlagern?
Wäre klasse wenn jemand helfen kann.
Grüße
Nils