Joomla.it Forum
Joomla! 1.5.x (versione con supporto terminato) => Joomla! 1.5 => : RobertLiotru 02 Sep 2010, 11:21:17
-
Salve, ho un problema piuttosto fastidioso
perchè se creo due tabelle joomla me le mette una sotto l'altra e non allineate?
io le voglio allineate le tabelle
cosa posso fare?
attendo urgentemente risposte
grazie in anticipo
-
Ciao RobertLiotru,
alla tabella più a sinistra prova a mettere Alignment Left. Dovrebbe salire l'altra. Naturalmente deve esserci lo spazio in front end per tutte e due... Oppure puoi fare una sola tabella con le celle che ti servono.
Se posso permettermi... "attendo urgentemente risposte" non è simpatico da leggere... ;) :)
-
chiedo umilmente scusa
il fatto è che mi serve per una cosa che devo consegnare entro oggi e non sapevo come fare
non ho capito bene potresti aiutarmi?
se io ti posto il codice delle due tabelle tu mi aiuti a far si che si affianchino?
grazie in anticipo
<p align="center"><div class="bd">
<div class="legends">
<ul>
</ul>
</div>
<div class="hd">
<div class="wrapper"><!-- collapse --></div>
</div>
<div class="bd">
<table style="border: 1px solid #909090; width: 170px; height: 111px;" border="1" cellspacing="0" cellpadding="0" frame="border" align="center" summary="La Biografia">
<thead>
<tr>
<th class="col1" scope="col"><abbr title="Biografia"></abbr></th> <th class="col2" scope="col">Biografia</th>
</tr>
</thead>
<tbody>
<tr class="qualified-full" style="text-align: center;">
<td>Data di Nascita:</td>
<th scope="row">30/07/1983</th>
</tr>
<tr class="qualified-full" style="text-align: center;">
<td>Luogo di Nascita:</td>
<th scope="row">Buenos Aires </th>
</tr>
<tr class="qualified-full" style="text-align: center;">
<td>Nazionalità:</td>
<th scope="row">Argentina</th>
</tr>
<tr class="qualified-full" style="text-align: center;">
<td>Ruolo:</td>
<th scope="row">Portiere</th>
</tr>
<tr class="qualified-full" style="text-align: center;">
<td>N° Maglia:</td>
<th scope="row">21</th>
</tr>
<tr class="qualified-full" style="text-align: center;">
<td>Altezza:</td>
<th scope="row">194cm</th>
</tr>
<tr class="qualified-full" style="text-align: center;">
<td>Peso:</td>
<th scope="row">87kg</th>
</tr>
</tbody>
</table>
</div>
</div>
<div class="bd">
<div class="legends">
<ul>
</ul>
</div>
<div class="hd">
<div class="wrapper"><!-- collapse --></div>
</div>
<div class="bd">
<table style="border: 1px solid #909090; width: 130px; height: 90px;" border="1" cellspacing="0" cellpadding="0" frame="border" align="center" summary="La Carriera">
<thead>
<tr>
<th class="col1" scope="col"><abbr title="Stagione">Stagione</abbr></th> <th class="col2" scope="col">Squadra</th><th class="col3" scope="col">Serie</th><th class="col4" scope="col">Presenze</th><th class="col5" scope="col">Reti</th>
</tr>
</thead>
<tbody>
<tr class="qualified-full" style="text-align: center;">
<td>2009/2010</td>
<th scope="row">Catania</th>
<th scope="row">Serie A</th>
<th scope="row">35</th>
<th scope="row">41 (sub.)</th>
</tr>
<tr class="qualified-full" style="text-align: center;">
<td>2008/2009</td>
<th scope="row">Estudiantes (ARG.)</th>
<th scope="row">Serie A ARG.</th>
<th scope="row">34</th>
<th scope="row">-</th>
</tr>
<tr class="qualified-full" style="text-align: center;">
<td>2007/2008</td>
<th scope="row">Estudiantes (ARG.)</th>
<th scope="row">Serie A ARG.</th>
<th scope="row">36</th>
<th scope="row">-</th>
</tr>
<tr class="qualified-full" style="text-align: center;">
<td>2006/2007</td>
<th scope="row">Estudiantes (ARG.)</th>
<th scope="row">Serie A ARG.</th>
<th scope="row">34</th>
<th scope="row">-</th>
</tr>
<tr class="qualified-full" style="text-align: center;">
<td>2005/2006</td>
<th scope="row">Palermo</th>
<th scope="row">Serie A</th>
<th scope="row">11</th>
<th scope="row">10 (sub.)</th>
</tr>
<tr class="qualified-full" style="text-align: center;">
<td>2004/2005</td>
<th scope="row">Huracan (ARG.)</th>
<th scope="row">Serie B ARG.</th>
<th scope="row">36</th>
<th scope="row">-</th>
</tr>
<tr class="qualified-full" style="text-align: center;">
<td>2003/2004</td>
<th scope="row">Huracan (ARG.)</th>
<th scope="row">Serie B ARG.</th>
<th scope="row">17</th>
<th scope="row">-</th>
</tr>
<tr class="qualified-full" style="text-align: center;">
<td>2002/2003</td>
<th scope="row">Huracan (ARG.)</th>
<th scope="row">Serie A ARG.</th>
<th scope="row">7</th>
<th scope="row">-</th>
</tr>
</tbody>
</table>
</div>
</div></p>
-
Ma, prova così... le tabelle sono solo due, nel tuo html erano tante ma tutte uguali:
<table style="border: 1px solid #909090; width: 170px; height: 111px;" summary="La Biografia" frame="border" align="left" border="1" cellpadding="0" cellspacing="0">
<thead>
<tr>
<th class="col1" scope="col"><abbr title="Biografia"></abbr></th> <th class="col2" scope="col">Biografia</th>
</tr>
</thead>
<tbody>
<tr class="qualified-full" style="text-align: center;">
<td>Data di Nascita:</td>
<th scope="row">30/07/1983</th>
</tr>
<tr class="qualified-full" style="text-align: center;">
<td>Luogo di Nascita:</td>
<th scope="row">Buenos Aires </th>
</tr>
<tr class="qualified-full" style="text-align: center;">
<td>Nazionalità:</td>
<th scope="row">Argentina</th>
</tr>
<tr class="qualified-full" style="text-align: center;">
<td>Ruolo:</td>
<th scope="row">Portiere</th>
</tr>
<tr class="qualified-full" style="text-align: center;">
<td>N° Maglia:</td>
<th scope="row">21</th>
</tr>
<tr class="qualified-full" style="text-align: center;">
<td>Altezza:</td>
<th scope="row">194cm</th>
</tr>
<tr class="qualified-full" style="text-align: center;">
<td>Peso:</td>
<th scope="row">87kg</th>
</tr>
</tbody>
</table>
<div class="bd">
<table style="border: 1px solid #909090; width: 130px; height: 90px;" summary="La Carriera" frame="border" align="left" border="1" cellpadding="0" cellspacing="0">
<thead>
<tr>
<th class="col1" scope="col"><abbr title="Stagione">Stagione</abbr></th> <th class="col2" scope="col">Squadra</th> <th class="col3" scope="col">Serie</th> <th class="col4" scope="col">Presenze</th> <th class="col5" scope="col">Reti</th>
</tr>
</thead>
<tbody>
<tr class="qualified-full" style="text-align: center;">
<td>2009/2010</td>
<th scope="row">Catania</th> <th scope="row">Serie A</th> <th scope="row">35</th> <th scope="row">41 (sub.)</th>
</tr>
<tr class="qualified-full" style="text-align: center;">
<td>2008/2009</td>
<th scope="row">Estudiantes (ARG.)</th> <th scope="row">Serie A ARG.</th> <th scope="row">34</th> <th scope="row">-</th>
</tr>
<tr class="qualified-full" style="text-align: center;">
<td>2007/2008</td>
<th scope="row">Estudiantes (ARG.)</th> <th scope="row">Serie A ARG.</th> <th scope="row">36</th> <th scope="row">-</th>
</tr>
<tr class="qualified-full" style="text-align: center;">
<td>2006/2007</td>
<th scope="row">Estudiantes (ARG.)</th> <th scope="row">Serie A ARG.</th> <th scope="row">34</th> <th scope="row">-</th>
</tr>
<tr class="qualified-full" style="text-align: center;">
<td>2005/2006</td>
<th scope="row">Palermo</th> <th scope="row">Serie A</th> <th scope="row">11</th> <th scope="row">10 (sub.)</th>
</tr>
<tr class="qualified-full" style="text-align: center;">
<td>2004/2005</td>
<th scope="row">Huracan (ARG.)</th> <th scope="row">Serie B ARG.</th> <th scope="row">36</th> <th scope="row">-</th>
</tr>
<tr class="qualified-full" style="text-align: center;">
<td>2003/2004</td>
<th scope="row">Huracan (ARG.)</th> <th scope="row">Serie B ARG.</th> <th scope="row">17</th> <th scope="row">-</th>
</tr>
<tr class="qualified-full" style="text-align: center;">
<td>2002/2003</td>
<th scope="row">Huracan (ARG.)</th> <th scope="row">Serie A ARG.</th> <th scope="row">7</th> <th scope="row">-</th>
</tr>
</tbody>
</table>
</div>
<div class="bd">
<div class="legends">
<ul>
</ul>
</div>
<div class="hd">
<div class="wrapper"><!-- collapse --></div>
</div>
<div class="bd"></div>
</div>
Apri l'articolo e usa l'inserimento HTML