Hi all,
Quite a newbie to HTML so this may be an obvious question. I have a simple page comprising 3 frames. Top frame is just for display. Clicking on a link on a menu in the left frame results in a list of links being displayed in the right (main) frame. - You get the idea.
Anyway, as long as I just list the links in the main frame I have no problem, the results are listed from the top of the page down. However, as soon as I put a table round the list of links, they move about 3-4 inches down the page. I can't see any reason why this is happening.
Since there is some ASP in there, and this is an HTML forum, I'll just post the 'View Source' results directly from the browser:
...essentially just 10 repeating rows in a pretty simple table, so I'm pretty puzzled why the table isn't just appearing at the top of the page.
If the above isn't clear, let me know and I'll post the full source code incl ASP.
Any suggestions? Many thanks, Gavin
Quite a newbie to HTML so this may be an obvious question. I have a simple page comprising 3 frames. Top frame is just for display. Clicking on a link on a menu in the left frame results in a list of links being displayed in the right (main) frame. - You get the idea.
Anyway, as long as I just list the links in the main frame I have no problem, the results are listed from the top of the page down. However, as soon as I put a table round the list of links, they move about 3-4 inches down the page. I can't see any reason why this is happening.
Since there is some ASP in there, and this is an HTML forum, I'll just post the 'View Source' results directly from the browser:
Code:
<html>
<head>
<title>Untitled</title>
<link rel="stylesheet"
type="text/css" href="stylesMain.css" />
</head>
<body>
<h3>Reports</h3>
<br>
<table border=1 width=850 cellspacing = 0><tr><td><a href=[URL unfurl="true"]http://trastest21/viewrpt.cwr?id=58373&apsname=trastest21&apsuser=Administrator&apspassword=&apsauthtype=secEnterprise[/URL] target="_blank"><h5>######</h5></a></td> <td><h6> ##### </h6></td></tr><br><tr><td><a href=[URL unfurl="true"]http://trastest21/viewrpt.cwr?id=58373&apsname=trastest21&apsuser=Administrator&apspassword=&apsauthtype=secEnterprise[/URL] target="_blank"><h5>#####</h5></a></td> <td><h6> ##### </h6></td></tr><br><tr><td><a href=[URL unfurl="true"]http://trastest21/viewrpt.cwr?id=58373&apsname=trastest21&apsuser=Administrator&apspassword=&apsauthtype=secEnterprise[/URL] target="_blank"><h5>#####</h5></a></td> <td><h6> ##### </h6></td></tr><br><tr><td><a href=[URL unfurl="true"]http://trastest21/viewrpt.cwr?id=58373&apsname=trastest21&apsuser=Administrator&apspassword=&apsauthtype=secEnterprise[/URL] target="_blank"><h5>#####</h5></a></td> <td><h6> #####</h6></td></tr><br><tr><td><a href=[URL unfurl="true"]http://trastest21/viewrpt.cwr?id=58373&apsname=trastest21&apsuser=Administrator&apspassword=&apsauthtype=secEnterprise[/URL] target="_blank"><h5>#####</h5></a></td> <td><h6> ##### </h6></td></tr><br><tr><td><a href=[URL unfurl="true"]http://trastest21/viewrpt.cwr?id=58373&apsname=trastest21&apsuser=Administrator&apspassword=&apsauthtype=secEnterprise[/URL] target="_blank"><h5>#####</h5></a></td> <td><h6> ##### </h6></td></tr><br><tr><td><a href=[URL unfurl="true"]http://trastest21/viewrpt.cwr?id=58373&apsname=trastest21&apsuser=Administrator&apspassword=&apsauthtype=secEnterprise[/URL] target="_blank"><h5>#####</h5></a></td> <td><h6> #####</h6></td></tr><br><tr><td><a href=[URL unfurl="true"]http://trastest21/viewrpt.cwr?id=58373&apsname=trastest21&apsuser=Administrator&apspassword=&apsauthtype=secEnterprise[/URL] target="_blank"><h5>#####</h5></a></td> <td><h6> #####</h6></td></tr><br><tr><td><a href=[URL unfurl="true"]http://trastest21/viewrpt.cwr?id=58373&apsname=trastest21&apsuser=Administrator&apspassword=&apsauthtype=secEnterprise[/URL] target="_blank"><h5>#####</h5></a></td> <td><h6> ##### </h6></td></tr><br><tr><td><a href=[URL unfurl="true"]http://trastest21/viewrpt.cwr?id=45078&apsname=trastest21&apsuser=Administrator&apspassword=&apsauthtype=secEnterprise[/URL] target="_blank"><h5>#####</h5></a></td> <td><h6> #####</h6></td></tr><br></table>
</body>
</html>
...essentially just 10 repeating rows in a pretty simple table, so I'm pretty puzzled why the table isn't just appearing at the top of the page.
If the above isn't clear, let me know and I'll post the full source code incl ASP.
Any suggestions? Many thanks, Gavin