在标题中看不到标志

时间:2015-04-06 10:23:21

标签: php html wordpress

我在标题中有两个标记(即时通讯使用自定义主题),但在Chrome中我只看到1个标记和firefox 2标记。

在谷歌浏览器中:

enter image description here

和Mozille Firefox:

enter image description here

我的问题是,为什么我在Chrome中只看到一个标志?

我的代码:

<header class="<?php echo implode( " ", apply_filters('tc_header_classes', array('tc-header' ,'clearfix', 'row-fluid') ) ) ?>" role="banner">
        <div style = 'position: absolute; top: 10px; right: 20px;'>
                <a href = 'http://localhost/wordpress/wordpress/et/'><img src = 'http://www.wizards.com/events/images/flag_Estonia.jpg' /></a>
                <a href = 'http://localhost/wordpress/wordpress/en/'><img src = 'http://www.hans-pedersen.com/en/img/icon-english.gif' /></a>
        </div>

        <div style = 'position: absolute; right: 100px; top: 10px; z-index: 201'>
                <?php wp_loginout(); ?>
        </div>
            <div style = 'position: relative; right: 80px;'>
            <?php 
                // The '__header' hook is used with the following callback functions (ordered by priorities) : 
                //TC_header_main::$instance->tc_logo_title_display(), TC_header_main::$instance->tc_tagline_display(), TC_header_main::$instance->tc_navbar_display()
                do_action( '__header' );
            ?>
            </div>
        </header>

我已经尝试将旗帜右移至40,100,......但没有。

有人可以帮助我或提供一些线索:)谢谢!

1 个答案:

答案 0 :(得分:0)

尝试从flags div中删除位置样式,因为这一个标记没有正确显示。现在只是空,而不是检查显示标志的位置。

<div style = ''>
   <a href = 'http://localhost/wordpress/wordpress/et/'><img src = 'http://www.wizards.com/events/images/flag_Estonia.jpg' /></a>
   <a href = 'http://localhost/wordpress/wordpress/en/'><img src = 'http://www.hans-pedersen.com/en/img/icon-english.gif' /></a>
</div>