我有一个使用我购买的模板设计的 Wordpress 网站。对模板的支持有点难以获得,所以我决定在这里问一下,也许有人知道这个问题的答案。
网站布局在 Chrome 中看起来不错,但在 IE 和 Firefox 最新版本中很奇怪。
这是 Chrome 的正常布局:
这是在 Firefox/IE 中:
该网站的代码分布在 php 文件中。但这是 Header.php 的开始
<?php
/**
* @package WordPress
* @subpackage *** */
?>
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang="en"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8" lang="en"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9" lang="en"> <![endif]-->
<!--[if gt IE 8]><!--> <html <?php language_attributes(); ?>> <!--<![endif]-->
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>" />
<meta name="viewport" content="width=device-width" />
<?php if(get_option('header_favicon')) { ?>
<link rel="shortcut icon" href="<?php echo get_option('header_favicon'); ?>" />
<?php } ?>
<title><?php if(is_front_page()) { bloginfo('name'); } else { wp_title( '', true, 'right' ); }?></title>
<?php if(get_option('rss_feed')) { ?>
<link rel="alternate" type="application/rss+xml" title="<?php echo get_option('rss_title'); ?>" href="<?php echo get_option('rss_feed'); ?>" />
<?php }
知道什么可以解决这个问题吗?