i am using a table for my inline frames, so it comes out to something like this(im writing it in php):
<table>
<tr>
<td><a href="hey.php">Hey</a></td>
<td rowspan="7">(Main window text here)</td>
</tr>
<tr><td><a href="gogogo.php">Go!</td></tr>
...
</table>
this worked out how it should on my homepage, but when i did that to my next page, which contained more window(main) text, it made a slightly bigger gap in between, which i dont want...
ive tried many things, including making a giant space at the bottom(<tr><td> </td></tr>...) and extending the rowspan to fit that, ive tried editing the stylesheet props, too:
<style>
td{valign:"top"; align:"center";}
</style>
every time, it came out looking exactly like before: slightly out of place
how can i make them both in the same spots, while keeping the amount of text different?