Ik heb een layout gemaakt.
Daarin heb ik een iframe neergezet maar het tdtje wat daarna komt word niet weergegeven.
Als ik de iframe weghaal word hij wel neergezet kan iemand mij vertellen wat het probleem zou kunnen zijn?

<table width=750 border="0" cellpadding="0" cellspacing="0">
<tr>
<td background="images/index_05.gif" width=149 height=402>
</td>
<td><iframe src="main.html" width=465 height=402 name="content" scrolling="auto" frameborder="0"></iframe></td>	
<td background="images/index_07.gif" witdh=136 height=402>
</td>
</tr>
</table>
En zo?

<table width=750 border="0" cellpadding="0" cellspacing="0">
<tr>
<td background="images/index_05.gif" width=149 height=402>&nbsp;</td>
<td><iframe src="main.html" width=465 height=402 name="content" scrolling="auto" frameborder="0"></iframe></td>
<td background="images/index_07.gif" witdh=136 height=402>&nbsp;</td>
</tr>
</table>
neej nog steeds niet dit is me gehele script:


<style>
body {
	background-color:#E1EAF4;
}
</style>
<html>
<head>
<title>Psychologische Praktijk Ermelo</title>
</head>
<body topmargin=0 marginwidth=0 marginheight=0>
<center>
<table width=750 border="0" cellpadding="0" cellspacing="0">
<tr>
<td background="images/index_01.gif" width=750 height=54>
<font face="Verdana, Arial, Helvetica, sans-serif" size="1" color="#000000"><center><b>Menu - Menu - Menu - Menu</b></font></center>
</td>
</tr>
</table>
<table width=750 border="0" cellpadding="0" cellspacing="0">
<tr>
<td background="images/index_02.gif" width=66 height=41>
</td>
<td background="images/index_03.gif" width=589 height=41>
</td>
<td background="images/index_04.gif" width=95 height=41>
</td>
</tr>
</table>
<table width=750 border="0" cellpadding="0" cellspacing="0">
    <tr>
        <td background="images/index_05.gif" width=149 height=402>&nbsp;</td>
        <td><iframe src="main.html" width=465 height=402 name="content" scrolling="auto" frameborder="0"></iframe></td>
        <td background="images/index_07.gif" witdh=136 height=402>&nbsp;</td>
    </tr>
</table>
<table width=750 border="0" cellpadding="0" cellspacing="0">
<tr>
<td background="images/index_08.gif" width=750 height=19>
</td>
</tr>
</table>
</center>
</body>
</html>
Dat deel met <style> moet sowieso in de <head> sectie en niet voor de <html> tag.
Probeer eens een doctype te gebruiken.
En van align="..." en </center> af te komen door CSS te gebruiken :-)

Reageren