• Jetzt anmelden. Es dauert nur 2 Minuten und ist kostenlos!

Keine Scrollbar ?!?!

adrian2005

Neues Mitglied
Hi, ich hab ein CMS entwickelt. Aber es wird leider keine Scollbar angezeigt.
Hier ist der Quelltext:

HTML:
<html>
<head>
<title>EasyCMS - Schnell, Einfach und Unkompliziert zur eigenen Homepage!</title>
<style type="text/css">
htnl, body, tr, td, table, div {
   font-size: 11px;
   font-family: tahoma, verdana, arial;
overflow-vertical: scroll;
}

.button {
background-image: url(img/layout/admin_menu_button.gif);
position: relative;
left: 0px;
width: 177;
height: 28;
}

div.button:hover {
background-image: url(img/layout/admin_menu_button_hover.gif);
position: relative;
left: 0px;
width: 177;
height: 28;
}

a.button:hover {
background-image: url(img/layout/admin_menu_button_hover.gif);
font-size: 11px;
text-decoration: none;
color: white
}

a.button {
font-size: 11px;
text-decoration: none;
color: white
}

a.button:visited {
font-size: 11px;
text-decoration: none;
color: white

}

</style>

</head>
<body background="img/layout/admin_bg.gif">
<div style="width: 100%; height: 100%; vertical-align: top; position: fixed; top: 0px; left: 0px; right: 0px; bottom: 0;"><table width="100%" border="0" cellspacing="0" cellpadding="0"><tr><td colspan="2" background="img/layout/admin_head.gif" height="82"><div style="margin-left: 200px;">
   Willkommen im Adminbereich deiner Seite,<br>von hier aus kannst du deine Inhalte bearbeiten und die Administratoren Verwalten.</div></td></tr><tr height="100%">
<td valign="top" height="100%">
<div style="width: 177px; position: fixed; bottom: 0px; left: 0; background-image: url(img/layout/admin_menu_bg.gif); height: 100%"><b><center><img src="img/layout/logo.png"></center></b><a class="button" href="admin.php?modul=1">
   <div class="button">
   <div style="margin-left: 3px;">
   <b><img style="margin-top: 3px" src="img/icons/16x16/page_white_text.png" align="left" border="0">Inhalte bearbeiten</b><br>
   </div>
   </div></a><a class="button" href="admin.php?modul=2">
   <div class="button">
   <div style="margin-left: 3px;">
   <b><img style="margin-top: 3px" src="img/icons/16x16/group.png" align="left" border="0">User Verwaltung</b><br>
   </div>
   </div></a><a class="button" href="admin.php?modul=3">
   <div class="button">
   <div style="margin-left: 3px;">
   <b><img style="margin-top: 3px" src="img/icons/16x16/cog.png" align="left" border="0">Seiten Einstellungen</b><br>
   </div>
   </div></a><a class="button" href="admin.php?modul=4">
   <div class="button">
   <div style="margin-left: 3px;">
   <b><img style="margin-top: 3px" src="img/icons/16x16/script.png" align="left" border="0">Modulverwaltung</b><br>
   </div>
   </div></a><a class="button" href="admin.php?modul=22">
   <div class="button">
   <div style="margin-left: 3px;">
   <b><img style="margin-top: 3px" src="img/icons/16x16/database_go.png" align="left" border="0">SQL-Code ausführen</b><br>
   </div>
   </div></a>
<a class="button" href="admin.php?modul='0'">
   <div class="button">
   <div style="margin-left: 3px;">
   <b><img style="margin-top: 3px" src="img/icons/16x16/door_out.png" align="left" border="0">Logout</b><br>
   </div>
   </div></a>
   <div style="position: fixed; bottom: 0px; margin-bottom: 3px"><font color="gray">Version 0.0.3<br>Name: Helios</font></div>
</div></td>
<td valign="top">
<div>
<div style="width: 641px; height: 28; margin-left: 200px; background-image: url(img/layout/admin_content_head.gif); text-align: left;"><div style="margin-left: 5px;"><b><font color="white">Inhalte bearbeiten</font></b></div></div><div style="width: 641px; margin-left: 200px; background-image: url(img/layout/admin_content_bg.gif); text-align: left;"><div style="margin-left: 5px;"><a href="admin.php?modul=1&aktion=add">Neue Seite hinzufügen!</a><table border="0"><tr><td><b>#</b></td><td><b>Name</b></td><td><b>Aktion</b></td></tr></tr></table></div><img src="img/layout/admin_content_bottom.gif"></div>
</td>
</tr>
</tr>
</table></div></body></html>

Pls Help!

P.s: Ja ich weiß, das es unordentlich geschrieben ist.:oops:
 
Werbung:
Verzichte auf absolute und fixierte Positionierung, dann ordnen sich die Elemente normal an und eine Scrollbar ist dann auch möglich. In deinem Fall ist deine Umsetzung völlig unnötig und falsch.
 
Werbung:
Zurück
Oben