Forum Moderators: open

Message Too Old, No Replies

Can tables be manipulated?

         

glengara

1:51 pm on Nov 14, 2003 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Total Newbie at this, so....
Is there a way table A can be rendered above table B in the browser, but have the positions reversed in the source code?

limbo

2:02 pm on Nov 14, 2003 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Glengara

This can be done buy placing Table B in a div. Then position the div over layer A.

The HTML would look something like:

<div id="Layer1" style="position:absolute; width:200px; height:115px; z-index:1; left: 60px; top: 42px">
<table width="100%">
<tr>
<td>&nbsp;</td>
</tr>
<tr>
<td>&nbsp;</td>
</tr>
</table>
</div>
<table width="100%">
<tr>
<td>&nbsp;</td>
</tr>
<tr>
<td>&nbsp;</td>
</tr>
</table>

<copied from simple DW layout>

Ta

Limbo

korkus2000

7:58 pm on Nov 14, 2003 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Just curious as to why you would need that?

glengara

8:52 pm on Nov 14, 2003 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



I use a logo that's linked to the home page, but some pages have a second link with some useful link text which seems to be discounted.
I've dropped the logo link from those pages, but see that as a temporary measure, and would like to find a solution that would allow the table with the text link be spidered before the table with the image link.