JSF - Campos desalinhados no I.E

Pessoal.

Tenho o código abaixo, que estou usando Richfaces, que está com um pequeno problema.

No Firefox e no Safari o form aparece certinho.

No I.E, os campos aparecem centralizados,

Alguém já passou por isso ?

abs e valeu…



    <%@ taglib uri="http://richfaces.org/a4j" prefix="a4j"%>
    <%@ taglib uri="http://richfaces.org/rich" prefix="rich"%>
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>

<%@page contentType="text/html" pageEncoding="ISO-8859-1"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
   "http://www.w3.org/TR/html4/loose.dtd">

<html>
    <head>
       
       
    <link rel="stylesheet" href="ttAdmin.css">       
            
       
        <title>Track and Trace System - Secure Supply Chain</title>
    </head>
    <body>
        <f:view>
            
                <table id="Tabela_01" class="bordaExterna" width="990" height="" border="0" cellpadding="0" cellspacing="0" align="center">
	<tr>
             <td align="center">
                 
			<img src="imagens/topo.jpg" width="1000" height="80" alt=""></td>
	</tr>
         <tr>
             <td>     
                <jsp:directive.include file="menu.jspf"/>  
        
        
	     </td>
	</tr>
	<tr>
             <td align="center">     
        
        <table border="0" width="990px"  height="520">

        <tbody>
        <tr>
        <td>
          
          <h:form>
          
         <rich:panel bodyClass="rich-laguna-panel-no-header" >
         <rich:messages passedLabel="Data is allowed to be stored." layout="list">
         <f:facet name="header">
         <h:outputText value="Entered Data Status:"></h:outputText>
         </f:facet>
         
         <f:facet name="errorMarker">
         <h:graphicImage value="imagens/error.gif" />   
         </f:facet>
         </rich:messages> 
         
            
         
            
          <rich:tabPanel switchType="ajax">
            
          <rich:tab label="Cadastro">    
            
          <h:panelGrid id="panel" columns="2" border="0">
          <f:facet name="header">
          <h:outputText value="Cadastro de Parceiro"/>
          </f:facet>
          
          <h:outputLabel for="nome" value="Nome : "  />
          <h:inputText binding="#{CadPartnerMB.txtNome}" id="nome"  size="100" maxlength="100" required="true" >
              <f:validateLength minimum="6" />
          </h:inputText>
            
          <h:outputLabel for="razao" value="Razão Social :" />
          <h:inputText binding="#{CadPartnerMB.txtRazao}" id="razao"  size="100" maxlength="100" required="true" >
              <f:validateLength minimum="10" />
          </h:inputText>
              

          <h:outputLabel for="endereco" value="Endereço : "  />
          <h:inputText binding="#{CadPartnerMB.txtEnd}" id="endereco"  size="80" maxlength="100" required="true" >
              <f:validateLength minimum="10" />
          </h:inputText>
          
          <h:outputLabel for="numero" value="Numero :" />
          <h:inputText binding="#{CadPartnerMB.txtNum}" id="numero"  size="6" maxlength="4" required="true" />
                    
           </h:panelGrid>
           
           <h:panelGrid id="panel2" columns="6" border="0">
           
          <h:outputLabel for="complemento" value="Complemento :" />
          <h:inputText binding="#{CadPartnerMB.txtComplemento}" id="complemento"  size="40" maxlength="30" />
          
          <h:outputLabel for="bairro" value="Bairro :" />
          <h:inputText binding="#{CadPartnerMB.txtBairro}" id="bairro"  size="20" maxlength="30" />
          
           <h:outputLabel for="cep" value="CEP :" />
           <h:inputText binding="#{CadPartnerMB.txtCep}" id="cep"  size="10" maxlength="8" required="true">
               <f:validateLength minimum="8" />
           </h:inputText>
           
          </h:panelGrid>
          
          <h:panelGrid id="panel3" columns="2" border="0">
          
          <h:outputLabel for="cnpj" value="CNPJ : "  />
          <h:inputText binding="#{CadPartnerMB.txtCnpj}"  id="cnpj"  size="20" maxlength="20" required="true" >
              <f:validateLength minimum="14" />
          </h:inputText>
          
          <h:outputLabel for="ie" value="Insc. Estadual :"  />
          <h:inputText binding="#{CadPartnerMB.txtIe}" id="ie"  size="20" maxlength="20" required="true" >
              <f:validateLength minimum="10" />
          </h:inputText>
          
          <h:outputLabel for="cidade" value="Cidade : "  />
          <h:inputText binding="#{CadPartnerMB.txtCidade}" id="cidade"  size="20" maxlength="20" required="true"/>
          <h:outputLabel for="uf" value="Estado :" />
          
          <h:inputText binding="#{CadPartnerMB.txtUf}" id="uf"  size="4" maxlength="2" required="true">
              <f:validateLength minimum="2" />
          </h:inputText>
          
          </h:panelGrid>
          
    
        </rich:tab>
       

         
            </rich:tabPanel>  
            
            
             <rich:tabPanel>  
             <rich:tab label="Classificação">
           
           <rich:pickList id="listClassificacao" binding="#{CadPartnerMB.myPickList}" required="true" >
               
               <f:selectItems value="#{SessionBean.option}" />
               
           </rich:pickList>
                 
            
            
            
         </rich:tab>
         
            </rich:tabPanel>  
           
           <h:commandButton id="submit" value="Cadastrar" action="#{CadPartnerMB.Cadastrar}" />
           
          
           </rich:panel>    
            
        </td>
        </tr>
        </tbody>
        </table>

        
	     </td>
	</tr>
	<tr>
		<td align="center">
                 <img src="imagens/rodape_01.jpg" width="1000" height="20" alt="rodape_01"/>

			</td>
	</tr>
        </table>   
            </h:form>  
        </f:view>
    </body>
</html>

Cara, sugiro que na linha 36 onde você tem esse código:

&lt;td align="center"&gt;

você tire essa declaração de center dai, e coloque na linha 38 onde hoje está assim:

&lt;table border="0" width="990px"  height="520"&gt;

ficaria assim:

&lt;table border="0" width="990px"  height="520" align="center"&gt;

acho que resolve seu problema.

Resolveu mesmo carinha…

Valeu !