Olá Bom Dia! Verifique seu css. Acredito que isso seja imcompatibilidade de css
faça o seguinte modifique no seu header.php do seu tema
<link rel=”stylesheet” type=”text/css” media=”all” href=”<?php bloginfo( ‘stylesheet_url’ );?>” />
por
<?php
$useragent = $_SERVER[‘HTTP_USER_AGENT’];
if (preg_match(‘|MSIE ([0-9].[0-9]{1,2})|’,$useragent,$matched)) {
$browser_version=$matched[1];
$browser = ‘IE’;
?><link rel=”stylesheet” type=”text/css” media=”all” href=”<?php bloginfo( ‘stylesheet_url’ ); ?>” /><?php
} elseif (preg_match( ‘|Opera/([0-9].[0-9]{1,2})|’,$useragent,$matched)) {
$browser_version=$matched[1];
$browser = ‘Opera’;
?><link rel=”stylesheet” type=”text/css” media=”all” href=”http://localhost/grupobarros-sa.com/wp-content/themes/grupobarros/styleBK.css” /><?php
} elseif(preg_match(‘|Firefox/([0-9\.]+)|’,$useragent,$matched)) {
$browser_version=$matched[1];
$browser = ‘Firefox’;
?><link rel=”stylesheet” type=”text/css” media=”all” href=”http://localhost/grupobarros-sa.com/wp-content/themes/grupobarros/styleBK.css” /><?php
} elseif(preg_match(‘|Chrome/([0-9\.]+)|’,$useragent,$matched)) {
$browser_version=$matched[1];
$browser = ‘Chrome’;
?><link rel=”stylesheet” type=”text/css” media=”all” href=”http://seusite.com.br/wp-content/themes/seutema/styleBK.css” /><?php
} elseif(preg_match(‘|Safari/([0-9\.]+)|’,$useragent,$matched)) {
$browser_version=$matched[1];
$browser = ‘Safari’;
?><link rel=”stylesheet” type=”text/css” media=”all” href=”http://localhost/grupobarros-sa.com/wp-content/themes/grupobarros/styleBK.css” /><?php
} else {
// browser not recognized!
$browser_version = 0;
$browser= ‘other’;
}?>
So ressaltando o styleBK.css foi no meu caso que funcionou bem nos navegadores Chrome, fireFox, Opera, e Safari.
Já o style.css ficou bem no IE
Isso e só uma ideía
se não souber muito de css acesse o site http://www.maujor.com/index.php que tem bastante coisa sobre css.