Bueno al final lo resolví usando tamaño fijo en width para ie7 y tamaño fijo y posición absoluta para ie6. No se si es lo mejor pero después de romperme un rato largo la cabeza y leer algunos tutoriales, fue lo mejor que pude hacer.
También de casualidad me encontré con la forma de eliminar la tabla que había usado para centrar el contenido de la página.
Dejo los códigos por si ayudan a alguien:
Código HTML:
Ver original<?php
include_once("includes.php");
$configSite= new SiteConfig();
?>
<!DOCTYPE html>
<!--[if lt IE 7 ]><html lang='es' class='ie6'><![endif]-->
<!--[if IE 7 ]> <html lang='es' class='ie7'> <![endif]-->
<!--[if IE 8 ]> <html lang='es' class='ie8'> <![endif]-->
<!--[if IE 9 ]> <html lang='es' class='ie9'> <![endif]-->
<!--[if (gt IE 9)|!(IE)]> <!--> <html lang='es'><!--<![endif]-->
<!--head---------------------------------------------------------------------------------------------------------------->
<meta http-equiv='Content-Type' content='text/html; charset=UTF-8'> <meta name='description' content='<?php $configSite->Descripcion ?>'>
<link href='template/css/template.css' type='text/css' rel='stylesheet' />
<!--body-------------------------------------------------------------------------------------------------------------- -->
<img src="template/img/lOGO.gif" width="224px" height="152px" >
1234567890'qwertyuiopasdfghjklñzxcvbnm,.
y el css
Código CSS:
Ver original/*div{
border-color:#000;
border-style:dashed;
border-left-width:1px;
}*/
#contenedor{
margin: 0 auto;
text-align:left;
width:90%;
height:900px;
}
.ie6 , .ie7 #contenedor{
width:900px;
}
#encabezado{
height:160px;
width:100%;
}
#logo{
float:left;
margin-left:0px;
margin-right:0px;
background-color:#FFF;
}
#head2{
width:100%;
}
.ie7 #head2{
width:676px;
}
.ie6 #head2{
width:650px;
position:absolute;
left:285px;
top:35px;
}
#destacado1{
width:100%;
height:37px;
background-color:#f99d02;
margin-bottom:3px;
}
#Buscador{
width:100%;
height:44px;
background-color:#cacace;
}
#destacado2{
margin-top:3px;
width:100%;
height:24px;
background-image:url(../img/back_destacado2.jpg);
}
Encontré tambien que se puede usar para cenrar:
display:tabla en el contenedor y display:cell en el contenido para poder usar el atributo align y centrar así cuando se complica.. Es una buena práctica o sigo buscando?
Gracias