problem, no?
If you must use tables, try something like this (syntax may not be exact) :
<!--- use a spacer image as a placeholder for the maximum amount of space to
be occupied by the text i.e. 800 pixles high --->
<table style="position: absolulte; top: 0px; left: 0px">
<tr>
<td><img src="" height="800" width="1"></td>
</tr>
</table>
<!--- then include your divs, place them in the exact position as the
placeholder table above --->
<div id="page1" style="position: absolulte; top: 0px; left: 0px">
</div>
<div id="page2" style="position: absolulte; top: 0px; left: 0px; visibility:
none;">
</div>
another approach may be to simply hide the row of a table if this is
possible
i.e.
<table style="position: absolulte; top: 0px; left: 0px">
<tr id="page1">
<td></td>
</tr>
<tr id="page2" style="visibility: none">
<td></td>
</tr>
</table>
there's another css property that belongs to some elements called 'display'
i.e. display: none; I can remember which, but one of the properties makes
the content invisibile AND also the space occopied by said content
invisible.
hth
[Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]