HTML interesse |
|
Hallo,
Omdat u mijn probleem beter zou begrijpen heb ik ook een tekening gemaakt: http://users.skynet.be/oele/probleem.gif
zoals u ziet, zou mijn tekst binnen de groene kader moeten blijven. dit lukt momenteel niet, hij gaat automatisch mijn kader groter maken en mijn background dus gaan herhalen.
Dit is mijn pagina:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<link REL="SHORTCUT ICON" HREF="favicon.ico">
<title>- { Oeste! V.1.0. }</title>
<!-- Verwijzing naar het CSS-Bestand-->
<link rel="stylesheet" href="style.css" type="text/css">
<script src="inc/js.js"></script>
<script>
function hidestatus(){
window.status=''
return true
}
if (document.layers)
document.captureEvents(Event.MOUSEOVER | Event.MOUSEOUT)
document.onmouseover=hidestatus
document.onmouseout=hidestatus
</script>
</head>
<body bgcolor="#CCCCCC">
<table border="0" bordercolor="#000000" height="100%" width="100%"><tr><td align="center" valign="middle">
<table height="500" width="900"><tr><td style="border-style: solid; border-width: 2px; border-color: #000000;">
<!-- Begin -->
<table cellpadding="0" cellspacing="0">
<tr>
<td background="images/index_r1_c1.jpg" height="500" width="49">test
</td>
<td background="images/index_r1_c2.jpg" height="500" width="119">
</td>
<td valign="top" width="567">
<table cellpadding="0" cellspacing="0">
<tr>
<td background="images/index_r1_c3.jpg" width="567" height="41">
test
</td>
</tr>
<tr>
<td background="images/index_r2_c3.jpg" width="567" height="459" valign="top">
<?
$info = $_GET['info'];
if(!$info) {
include("home.php");
} elseif(file_exists("$info.php")) {
include("$info.php");
} else {
include("error.php");
}
?>
</td>
</tr>
</table>
</td>
<td background="images/index_r1_c4.jpg" width="119" height="500">
</td>
<td background="images/index_r1_c5.jpg" width="46" height="500">
</td>
</tr>
</table>
<!-- Einde -->
</td></tr></table>
</td></tr></table>
</body>
</html>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <html> <head> <link REL="SHORTCUT ICON" HREF="favicon.ico"> <title>- { Oeste! V.1.0. }</title> <!-- Verwijzing naar het CSS-Bestand--> <link rel="stylesheet" href="style.css" type="text/css"> <script src="inc/js.js"></script> <script> function hidestatus(){ window.status='' return true } if (document.layers) document.captureEvents(Event.MOUSEOVER | Event.MOUSEOUT) document.onmouseover=hidestatus document.onmouseout=hidestatus </script> </head> <body bgcolor="#CCCCCC"> <table border="0" bordercolor="#000000" height="100%" width="100%"><tr><td align="center" valign="middle"> <table height="500" width="900"><tr><td style="border-style: solid; border-width: 2px; border-color: #000000;"> <!-- Begin --> <table cellpadding="0" cellspacing="0"> <tr> <td background="images/index_r1_c1.jpg" height="500" width="49">test </td> <td background="images/index_r1_c2.jpg" height="500" width="119"> </td> <td valign="top" width="567"> <table cellpadding="0" cellspacing="0"> <tr> <td background="images/index_r1_c3.jpg" width="567" height="41"> test </td> </tr> <tr> <td background="images/index_r2_c3.jpg" width="567" height="459" valign="top"> <? $info = $_GET['info']; if(!$info) { include("home.php"); include("$info.php"); } else { include("error.php"); } ?> </td> </tr> </table> </td> <td background="images/index_r1_c4.jpg" width="119" height="500"> </td> <td background="images/index_r1_c5.jpg" width="46" height="500"> </td> </tr> </table> <!-- Einde --> </td></tr></table> </td></tr></table> </body> </html>
wanneer mijn pagina dat ik nu dus include te lang word (zodat het niet meer in het kaderke past) zal hij zelf de grootte aanpassen. Dit wil ik niet.
Wie kan mij helpen?
een vriend zei met dat ik met overflow zou moeten werken. maar dit lukte ook niet
|