Forums

This topic is locked

Table cells that move in browser

Posted 22 Nov 2004 21:57:30
1
has voted
22 Nov 2004 21:57:30 Cecilia Puchulutegui posted:
I have a template with tables that when previewed in browser the height of each cell moves about 50px down. Can't seem to find the solution. I have Dreamweaver MX 2004 Demystified by Laura Gutman but she doesn't address the problem.
Thanks
PS: I tried control rows/columns

Replies

Replied 23 Nov 2004 11:15:57
23 Nov 2004 11:15:57 Lee Diggins replied:
Hi Celilia

What browser are you viewing the page in? Can you post a link to the page that causing the issue or post your code? Sure it's not to do with the page margin, maybe try something like this:

<body leftmargin="0" topmargin="0">

Without more info, it's a bit difficult to give you an answer.

Digga

Sharing Knowledge Saves Valuable Time!!!
Replied 23 Nov 2004 18:07:02
23 Nov 2004 18:07:02 Cecilia Puchulutegui replied:
Hi Digga,
yesterday I found what's causing the problem. Maybe you can help finding a solution.
When I add text to the editable region in a child page that is longer in length that the menu, the lenth of the cells get extended. If I add just a few lines of text, everything remains the same.
The grey lines below the links should be closer to the links.
You can see the page in puchulutegui.port5.com/registro_civil.htm Don't worry about the banner!
Here's the code. Thank you,

<table width="794" border="0" cellpadding="0" cellspacing="0">
<!--DWLayoutTable-->
<tr>
<td width="112" height="23" align="right" valign="top" scope="row"><div align="left"><span class="categoria">Francia</span></div></td>
<td width="682" rowspan="13" align="right" valign="top" scope="row"><div align="left">
<!-- TemplateBeginEditable name="EditRegion3" -->
<table width="100%" height="178%" border="0" cellpadding="0">
<tr>
<td height="719" valign="top" class="indent"><h1> </h1></td>
</tr>
</table>
<!-- TemplateEndEditable --></div></td>
</tr>
<tr>
<td height="82" align="right" valign="top" class="borde" scope="row"><a href="../francia/geografia.html">Geografía</a><br>
<a href="../francia/historia.htm">Historia</a><br>
<a href="../francia/revolucion.htm">Revolución Francesa y Genealogía</a></td>
</tr>
<tr>
<td align="right" valign="top" scope="row"><div align="left"><span class="categoria">Archivos</span></div></td>
</tr>
<tr>
<td height="129" align="right" valign="top" class="borde" scope="row"><a href="#">Registros Parroquiales</a><br>
<a href="#">Diócesis</a><br>
<a href="#">Iglesias Protestantes</a><br>
<a href="#">Registro Civil</a><br>
<a href="#">Archivos Departamentales</a></td>
</tr>
<tr>
<td align="right" valign="top" scope="row"><div align="left"><span class="categoria">Genalogía</span></div></td>
</tr>
<tr>
<td height="86" align="right" valign="top" class="borde" scope="row"><a href="#">Primeros Pasos</a><br>
<a href="#">Genealogía por Departamentos</a><br> <a href="#">Recursos Disponibles</a></td>
</tr>
<tr>
<td align="right" valign="top" scope="row"><div align="left"><span class="categoria">Apellidos</span></div></td>
</tr>
<tr class="borde">
<td height="69" align="right" valign="top" class="borde" scope="row"><a href="#">Generalidades</a><br>
<a href="#">Significado</a><br>
<a href="#">Buscadores: localización</a></td>
</tr>
<tr>
<td align="right" valign="top" scope="row"><div align="left"><span class="categoria">Inmigración</span></div></td>
</tr>
<tr class="borde">
<td height="86" align="right" valign="top" class="borde" scope="row"><a href="#">Entradas de Pasajeros</a><br>
<a href="#">Salidas desde Francia</a><br>
<a href="#">En Chile</a></td>
</tr>
<tr class="borde">
<td align="right" valign="top" scope="row"><div align="left"><span class="categoria">Modelos de Carta </span></div></td>
</tr>
<tr>
<td height="115" align="right" valign="top" class="borde" scope="row"><a href="#">Reg. Civil (Mairie)</a><br>
<a href="#">Archivos Deptartamentales</a><br>
<a href="#">Puerto</a><br>
<a href="#">Grupo de Voluntarios</a><br>
<a href="#">Posible Familiar</a></td>
</tr>
<tr>
<td height="19" align="right" valign="top" scope="row"> </td>
</tr>
<tr>
<td align="right" valign="top" scope="row"> </td>
<td align="right" valign="top" scope="row"><!--DWLayoutEmptyCell--> </td>
</tr>
</table>
Replied 23 Nov 2004 21:28:45
23 Nov 2004 21:28:45 Simon Martin replied:
Hi Cecilia,

Just tried the URL you gave, but it wasn't working...

Live the life you love
Love the life you live

Simon

[DWMX 2004]|[SQL]|[ASP/VBScript]|[XP-Pro]
Replied 24 Nov 2004 12:03:11
24 Nov 2004 12:03:11 Lee Diggins replied:
Hi Cecilia

I have rebuilt the content table, and it now displays the content how you expect. The problem was to with the table layout.

The fix I applied was as follows:

One main content table containing one row and two cells.
Navigation menu is a table which is nested into the left-hand cell of the main content table.
Content is a table which is nested into the right-hand cell of the main content table.

See code below for main content table:

<TABLE width=800 border=0 cellPadding=0 cellspacing="0">
<TBODY>
<TR>
<TD vAlign=top>
<TABLE border=0 cellPadding=0>
<TBODY>
<TR>
<TD vAlign=top scope=row align=right height=23>
<DIV align=left><SPAN class=categoria>Francia</SPAN></DIV>
</TD>
</TR>
<TR>
<TD class=borde vAlign=top scope=row align=right height=68><A
href="puchulutegui.port5.com/francia/geografia.html">Geografía</A><BR>
<A
href="puchulutegui.port5.com/francia/historia.htm">Historia</A><BR>
<A
href="puchulutegui.port5.com/francia/revolucion.htm">Revolución Francesa y Genealogía</A></TD>
</TR>
<TR>
<TD vAlign=top scope=row align=right height=21>
<DIV align=left><SPAN class=categoria>Archivos</SPAN></DIV>
</TD>
</TR>
<TR>
<TD class=borde vAlign=top scope=row align=right height=111><A
href="puchulutegui.port5.com/registro_civil.htm#">Registros Parroquiales</A><BR>
<A
href="puchulutegui.port5.com/registro_civil.htm#">Diócesis</A><BR>
<A
href="puchulutegui.port5.com/registro_civil.htm#">Iglesias Protestantes</A><BR>
<A
href="puchulutegui.port5.com/registro_civil.htm#">Registro Civil</A><BR>
<A
href="puchulutegui.port5.com/registro_civil.htm#">Archivos Departamentales</A></TD>
</TR>
<TR>
<TD vAlign=top scope=row align=right height=21>
<DIV align=left><SPAN class=categoria>Genalogía</SPAN></DIV>
</TD>
</TR>
<TR>
<TD class=borde vAlign=top scope=row align=right height=83><A
href="puchulutegui.port5.com/registro_civil.htm#">Primeros Pasos</A><BR>
<A
href="puchulutegui.port5.com/registro_civil.htm#">Genealogía por Departamentos</A><BR>
<A
href="puchulutegui.port5.com/registro_civil.htm#">Recursos Disponibles</A></TD>
</TR>
<TR>
<TD vAlign=top scope=row align=right height=21>
<DIV align=left><SPAN class=categoria>Apellidos</SPAN></DIV>
</TD>
</TR>
<TR class=borde>
<TD class=borde vAlign=top scope=row align=right height=66><A
href="puchulutegui.port5.com/registro_civil.htm#">Generalidades</A><BR>
<A
href="puchulutegui.port5.com/registro_civil.htm#">Significado</A><BR>
<A
href="puchulutegui.port5.com/registro_civil.htm#">Buscadores: localización</A></TD>
</TR>
<TR>
<TD vAlign=top scope=row align=right height=21>
<DIV align=left><SPAN class=categoria>Inmigración</SPAN></DIV>
</TD>
</TR>
<TR class=borde>
<TD class=borde vAlign=top scope=row align=right height=84><A
href="puchulutegui.port5.com/registro_civil.htm#">Entradas de Pasajeros</A><BR>
<A
href="puchulutegui.port5.com/registro_civil.htm#">Salidas desde Francia</A><BR>
<A
href="puchulutegui.port5.com/registro_civil.htm#">En Chile</A></TD>
</TR>
<TR class=borde>
<TD vAlign=top scope=row align=right height=21>
<DIV align=left><SPAN class=categoria>Modelos de Carta </SPAN></DIV>
</TD>
</TR>
<TR>
<TD class=borde vAlign=top scope=row align=right height=96><A
href="puchulutegui.port5.com/registro_civil.htm#">Reg. Civil (Mairie)</A><BR>
<A
href="puchulutegui.port5.com/registro_civil.htm#">Archivos Deptartamentales</A><BR>
<A
href="puchulutegui.port5.com/registro_civil.htm#">Puerto</A><BR>
<A
href="puchulutegui.port5.com/registro_civil.htm#">Grupo de Voluntarios</A><BR>
<A
href="puchulutegui.port5.com/registro_civil.htm#">Posible Familiar</A></TD>
</TR>
<TR>
<TD vAlign=top scope=row align=right height=31> </TD>
</TR>
</TBODY>
</TABLE></TD>
<TD vAlign=top width="86%"><TABLE height="100%" cellPadding=0 width="100%" border=0>
<TBODY>
<TR>
<TD vAlign=top height=652>
<P class=indent align=left><BR>
<BR>
<SPAN class=titulo>Registro Civil</SPAN><BR>
<BR>
<SPAN class=style5>El punto de partida en una investigación genealógica francesa es el
Registro Civil, que fue creado en 1792 y se ha constituido en el recurso genealógico
por excelencia. Algunas comunidades tardaron bastante en comenzar a llevar estos registros,
pero poco después de 1792, todas las personas que vivían en Francia fueron registradas.
En todos los casos la Municipalidad (Mairie) juega el rol del Registro civil.<BR>
<BR>
Las actas del Registro Civil son labradas y conservadas en la Mairie. Sin embargo, existen
diferentes situaciones en relación al número de habitantes del municipio.Todas las actas del
registro civil son labradas en dos ejemplares: el original y su duplicado. Una se conserva
en la Mairie y la otra se conserva en los archivos de la ciudad capital del departamento y
luego de un tiempo se remite a los Archivos Departamentales. <BR>
<BR>
Este sistema de organización ha posibilitado que las partidas adquieran un valor genealógico "extra".
Las partidas francesas tienen la particularidad de presentar extensas anotaciones marginales,
que adquieren mayor importancia genealógica que el cuerpo mismo de la partida. La hoja sobre
la que se redactan las partidas posee un amplio margen sobre el cual se van asentando, con
el transcurso del tiempo, datos de los acontecimientos posteriores sucedidos en la vida de
la persona. <BR>
<BR>
Existe legislación específica en relación a las anotaciones marginales. <BR>
Las "mairies" no están obligadas a conservar los actos más de 100 años y a menudo por falta
de espacio, las dos copias están en el archivo departamental.<BR>
<BR>
Una ley de 1970 obliga también a los municipios de menos de 2000 habitantes a depositar en
los archivos departamentales su estado civil de más de 150 años, así como los planos y los
registros catastrales que han dejado de funcionar hace más de treinta años.<BR>
Sin embargo, no todas lo hicieron...Existen pues grandes disparidades. Generalmente en el archivo
departamental, los actos siguen ordenados por pueblos y es muy difícil encontrar algo sin tener
el lugar y la fecha aproximada.<BR>
</SPAN><SPAN
class=style6><BR>
</SPAN><SPAN class=titulo>Importante</SPAN></P>
<P class="indent style6">Existe una ley en Francia que prohíbe a las distintas administraciones
(municipalidades, archivos, etc.) de transmitir documentos de índole privada como las actas
de nacimiento, de casamiento o defunción que tengan menos de 100 años. En algunos casos
cuando se puede probar la descendencia directa, se pueden obtener los documentos requeridos
para realizar trámites administrativos.<BR>
<BR>
Otros comentarios: Las " Mairies " en general piden que se les envíe un sobre franqueado para
enviar los papeles. A veces cobran las fotocopias y sin recibo! De allí el cupón internacional.
El franqueo de una carta simple vía aérea es de alrededor de 3 euros.<BR>
Algunos puntos a tener en cuenta al buscar documentos en el registro civil y las parroquias
francesas:<BR>
• Actas de Nacimiento: si la madre del niño era soltera, a menudo se incluía el nombre de sus padres.<BR>
• Matrimonios: Después de 1792, los casamientos tenían que ser realizados por las autoridades civiles,
antes de que la pareja se pudiera casar por iglesia. Las ceremonias de iglesia generalmente tenían lugar
en el pueblo donde la novia residía. El registro civil del casamiento podría haberse efectuado en otra
parte, como por ejemplo el lugar de residencia del novio. <BR>
• Las partidas de matrimonio del registro civil son riquísimas en datos: como por ejemplo la fecha y
lugar del casamiento, los nombres completos de la novia y el novio, los nombres de sus padres (incluyendo
el apellido de soltera de la madre), la fecha y lugar de fallecimientos de algún padre difunto, las direcciones
y ocupaciones de la novia y el novio, los detalles de algún casamiento previo, y los nombres, direcciones,
y ocupaciones de por lo menos dos testigos. También, generalmente se encontrará el reconocimiento de
cualquier niño nacido antes del casamiento.<BR>
• Defunciones: estos registros pueden ser especialmente útiles para la gente nacida y/o casada después
de 1792, ya que pueden llegar a ser los únicos registros existentes de estas personas. Generalmente,
los registros de defunción también incluyen la edad y el lugar de nacimiento del difunto, y los nombres
de sus padres (incluyendo el apellido de soltera de la madre) y la información de si los padres han o
no fallecido. <BR>
• Actas de defunciones de Mujeres: generalmente se labraba el acta de defunción de una mujer con su apellido
de soltera, por lo que se hace necesario buscar en los índices tanto los nombres y apellidos de casada
como de soltera.<BR>
</P>
<P class=style6></P>
<H1> </H1>
</TD>
</TR>
</TBODY>
</TABLE></TD>
</TR>
</TBODY>
</TABLE>

Digga

Sharing Knowledge Saves Valuable Time!!!
Replied 25 Nov 2004 18:43:09
25 Nov 2004 18:43:09 Cecilia Puchulutegui replied:
Hi Digga,
Thanks for the changes in the code. That solved the problem.

Cecilia
PS: sharing knowledge really saves time!

Reply to this topic