Scrollbalken will nicht erscheinen !

Status
Nicht offen für weitere Antworten.

elektro-elephant

Grünschnabel
Hi,
hab da ein arges Problem. Hab hier ne Webseite die partout keinen Scrollbalken anzeigen will.
Ich hab es schon mit "scrollable", "scrolling" uind "overflow" innerhalb des Mainframes, sowie in den eigentlich bedürftigen Teilframes versucht.
Halb so wild im Firefox. die Site lässt sich mit dem Mausrad scrollen (auch kein Zustand), aber ganz bitter im Iexplorer, weil nur die halbe Page zu sehen ist.

Hier einmal die Seite: http://www.ekslen.de

und zum Verständnis der Sourcecode. Bei den News in der Startseite handelt es sich um ein Jpeg. Kann jemand helfen ? Danke

</head>

<body bgcolor="#000000">
<table width="800" height="640" border="0" align="center"
cellpadding="0" cellspacing="0" scrollable="yes">
<tr>
<td width="800" height="229"><img src="banner.jpg" width="800"
height="229"></td>
</tr>
<tr>
<td height="35" bgcolor="000000">
<div align="center"><a href="index.php?action=news"><img
src="news.jpg" width="94" height="35" border="0"></a><a
href="index.php?action=identitat"><img src="id.jpg" width="200"
height="35" border="0"></a><a href="index.php?action=eks"><img
src="eks.jpg" width="100" height="35" border="0"></a><a
href="index.php?action=jams"><img src="jams.jpg" width="100" height="35"
border="0"></a><a href="index.php?action=bio"><img src="bio.jpg"
width="100" height="35" border="0"></a><a
href="index.php?action=gb"><img src="gastebuch.jpg" width="200"
height="35" border="0"></a></div></td>
</tr>
<tr>
<td height="361" valign="top" bgcolor="000000">
<div align="center">
<table width="100%" height="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td>
<?php
switch($action){
case "news": include("news.php"); break;
case "bio": include("bio.php"); break;
case "jams": include("jams.php"); break;
case "pics": include("pics.php"); break;
case "identitat": include("identitat.php"); break;
case "eks": include("eks.php"); break;
case "gb": include("gb.php"); break;
case "kontakt": include("kontakt.php"); break;
default: include("news.php"); break;
}
?>
<div align="right"> </div>
<div align="right"> </div></td>
</tr>
<tr>
<td><div align="right"> </div></td>
</tr>
</table>
<p align="right"> </p>
<p> </p>
<p> </p>
<p> </p>
<p align="right"> </p>
<table width="98%" border="0">
<tr>
<td><div align="center"> </div></td>
</tr>
</table>
</div></td>
</tr>
<tr>
<td height="15" valign="top" bgcolor="000000">
<div align="right"></div></td>
</tr>
</table>
<div align="center"></div>
</body>
</html>
 
Das von dir verwendete Attribut scrollable="yes" ist mir nicht bekannt :confused:

Code:
body
{
overflow: auto;
}
oder du gestaltest eine Tabellenzelle scrollfähig:
HTML:
<td height="361">
  <div style="overflow:auto; height:361px;"> <!-- scrollfähiger Inhalt --> </div>
</td>
 
Status
Nicht offen für weitere Antworten.
Zurück