Ver Mensaje Individual
  #3 (permalink)  
Antiguo 24/01/2009, 04:59
jochite
 
Fecha de Ingreso: septiembre-2008
Mensajes: 185
Antigüedad: 15 años, 7 meses
Puntos: 1
Respuesta: problemas con un div izquierdo

<div id="sidebar1"><!-- InstanceBeginEditable name="Menu_Izquierdo" -->
<table width="100%" height="458" border="1" cellpadding="10">
<tr bgcolor="#B6B6B6">
<td bgcolor="#B6B6B6"><span style="font-weight: bold">B&uacute;squedas de Noticias</span></td>
</tr>
<tr>
<td height="57"><form id="form2" name="form2" method="get" action="Busqueda_Noticias.dwt.php">
<label for="Categoriaid"></label>
<p align="center">&nbsp;</p>
<label for="button2"></label>
<div align="center">
<p><span style="font-size: 18px">
<select name="Categoriaid" id="Categoriaid">
<?php
do {
?>
<option value="<?php echo $row_Categorias['Categoriaid']?>"><?php echo $row_Categorias['Nombre']?></option>
<?php
} while ($row_Categorias = mysql_fetch_assoc($Categorias));
$rows = mysql_num_rows($Categorias);
if($rows > 0) {
mysql_data_seek($Categorias, 0);
$row_Categorias = mysql_fetch_assoc($Categorias);
}
?>
</select>
</span></p>
<p>
<input type="submit" name="button2" id="button2" value="Categorias" />
</p>
</div>
</form></td>
</tr>
<tr>
<td height="123"><form id="form3" name="form3" method="get" action="Busqueda_Palabras.dwt.php">
<label for="texto"></label>
<p align="center">
<input type="text" name="texto" id="texto" />
</p>
<p align="center">
<label for="button3"></label>
<input type="submit" name="button3" id="button3" value="Buscar Palabra" />
</p>
</form>
<p>&nbsp;</p></td>
</tr>
<tr>
<td bgcolor="#B6B6B6"><span style="font-weight: bold">Administrar de Noticias</span></td>
</tr>
<tr>
<td height="86"><p align="center" style="font-weight: bold"><a href="Administrador.dwt.php">Administrador</a></p></td>
</tr>
</table>
<p>&nbsp;</p>
----------------------------------------------------------------------------------------------------
css

<div id="sidebar1"><!-- InstanceBeginEditable name="Menu_Izquierdo" -->
<table width="100%" height="458" border="1" cellpadding="10">
<tr bgcolor="#B6B6B6">
<td bgcolor="#B6B6B6"><span style="font-weight: bold">B&uacute;squedas de Noticias</span></td>
</tr>
<tr>
<td height="57"><form id="form2" name="form2" method="get" action="Busqueda_Noticias.dwt.php">
<label for="Categoriaid"></label>
<p align="center">&nbsp;</p>
<label for="button2"></label>
<div align="center">
<p><span style="font-size: 18px">
<select name="Categoriaid" id="Categoriaid">
<?php
do {
?>
<option value="<?php echo $row_Categorias['Categoriaid']?>"><?php echo $row_Categorias['Nombre']?></option>
<?php
} while ($row_Categorias = mysql_fetch_assoc($Categorias));
$rows = mysql_num_rows($Categorias);
if($rows > 0) {
mysql_data_seek($Categorias, 0);
$row_Categorias = mysql_fetch_assoc($Categorias);
}
?>
</select>
</span></p>
<p>
<input type="submit" name="button2" id="button2" value="Categorias" />
</p>
</div>
</form></td>
</tr>
<tr>
<td height="123"><form id="form3" name="form3" method="get" action="Busqueda_Palabras.dwt.php">
<label for="texto"></label>
<p align="center">
<input type="text" name="texto" id="texto" />
</p>
<p align="center">
<label for="button3"></label>
<input type="submit" name="button3" id="button3" value="Buscar Palabra" />
</p>
</form>
<p>&nbsp;</p></td>
</tr>
<tr>
<td bgcolor="#B6B6B6"><span style="font-weight: bold">Administrar de Noticias</span></td>
</tr>
<tr>
<td height="86"><p align="center" style="font-weight: bold"><a href="Administrador.dwt.php">Administrador</a></p></td>
</tr>
</table>
<p>&nbsp;</p>