Wordpress - IE8不显示徽标

时间:2011-06-24 09:49:14

标签: wordpress internet-explorer

一些细节:

我正在使用OptionTree在Wordpress中“上传”徽标。

的header.php

<h1 id="site-title">
<a href="<?php bloginfo('url') ?>/" title="Home" rel="home">
<?php 
    if (function_exists('get_option_tree') and get_option_tree('logo_file')) 
    {
        $logo_image = get_option_tree('logo_file');
        echo '<img src="' . $logo_image . '" alt="" />';
    } else {
        echo bloginfo('name');
    }   
?>
</a>                       
</h1>

的style.css

#site-title { 
    font: normal normal normal 218%/1em Georgia,'Times New Roman', serif;
    margin: 0 0 .2em 0;
}
#site-title a{
    color: #000; 
    border-bottom:none;
    display:block;
    width:494px;
    height:141px;
}

0 个答案:

没有答案