Ver Mensaje Individual
  #4 (permalink)  
Antiguo 16/09/2011, 08:45
Avatar de jesusbg
jesusbg
 
Fecha de Ingreso: septiembre-2011
Ubicación: Santiago de Compostela
Mensajes: 41
Antigüedad: 12 años, 8 meses
Puntos: 1
Respuesta: Problemas de colocacion IE8

y el de la pagina:
y la página:
Cita:
<html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=9" />
<INCLUDES DE CSS Y JS>
</head>
<body>
<div id="contenedor">
<div id="logo" align="left">
<table>
<tr>
<td rowspan="2" width="450"><a href="index.php">IMG</a></td>
<td width="250">IMG</td>
<td rowspan="2">
FORMULARIO
</td>
</tr>
<tr>
<td>IMG</td>
</tr>
</table>
</div>
<div id="otros">
<form name="frmProductos" action="./util/actProductoActivo.php" method="post">
<div id="otrosImg">

</div>
<?php
BUCLE PARA CARGAR n DIVS ?>
<div id="otrosElemento">

</div>
<?php
FIN BUCLE
}
?>
</form>
</div>
<div id="central">
<div id="navegacionBar">
BARRA DE NAVEGACION
</div>
<div id="navegacionDiv">
<div id="navegacionCarro">
<?php
SI EXISTE UN ELEMENTO ACTIVO {?>
<form name="frmConfirmarPedido" method="post" action="./util/actAddLineaPedido.php" enctype="multipart/form-data">
<table width="100%">
<tr>
<th><?=$nombre?></th>
<th>Cantidad:</th>
<td><input type="text" name="txtCantidadProducto" size="2" class="textBox"/></td>
</tr>
<tr>
<th>Frente</th><td colspan="2" align="left"><input type="file" name="imgFrenteProducto" id="imgFrenteProducto" class="textBox"/></td>
</tr>
<tr>
<th>Reves</th><td colspan="2" align="left"><input type="file" name="imgRevesProducto" id="imgRevesProducto" class="textBox"/> </td>
</tr>
</table>
Datos de env&iacute;o<br>
<table width="100%">
<tr>
<th>Direccion</th>
<td><input type="text" name="txtDireccionConfirmarPedido" value="<?=$_SESSION["pedido"]->get_direccion();?>" class="textBox"/></td>
</tr>
<tr>
<th>Poblacion</th>
<td align="left"><input type="text" name="txtPoblacionConfirmarPedido" value="<?=$_SESSION["pedido"]->get_poblacion();?>" class="textBox"/></td>
</tr>
<tr>
<th>Provincia</th>
<td><input type="text" name="txtProvinciaConfirmarPedido" value="<?=$_SESSION["pedido"]->get_provincia();?>" class="textBox"/></td>
</tr>
<tr>
<th>C&oacute;digo postal</th>
<td><input type="text" name="txtCPConfirmarPedido" value="<?=$_SESSION["pedido"]->get_codigo_postal();?>" class="textBox"/></td>
</tr>
</table>
<a href="#" onclick="comprobarFrmPedido()" onmouseover="imgAnhadir.src='./imgp/anhadir2.gif';" onmouseout="imgAnhadir.src='./imgp/anhadir.gif'">
<img name="imgAnhadir" src="./imgp/anhadir.gif" border="0">
</a>
</form>
</div>
<?php
}?>
</div>
</div>
<div id="contCategorias">
<div id="categoriasImg">
<img src="./imgp/categorias.png">
</div>
<div id="categorias">
<form name="frmMenuNavegacion" action="./util/actMenu.php" method="post">
<input type="hidden" name="idIndex" id="idIndex">
<table border="0">
<?php
$i=0;
BUCLE PARA CARGAR EL DIV DE LA IZQUIERDA ?>
<td>
<a href="#" onclick="ver(<?=$id;?>)">
<img src="./imgCats/<?=$id;?>.jpg" WIDTH="100" height="100" alt="<?=$nombre;?>" border="0" >
</a>
</td>
<?php
FIN BUCLE
}?>
</table>
</form>
</div>
</div>
</div>
</body>
</html>