1

如果这个问题已经得到解答,我提前道歉,但我很难在此处链接我的徽标:http: //testsite.brentthelendesign.com/。这是一个基于 WordPress“骨架”的网站。任何帮助将不胜感激!代码如下。

HTML

<header class="left full header-bg">
    <div class="container">
        <div class="container-inside left">
            <div class="sixteen columns">
                <h1 class="logo abs"><a href="<?php echo get_option('home'); ?>"/></a></h1>
                <nav>
                    <?php st_navbar(); ?>
                </nav>
            </div>
        </div>
    </div><!--container-->
 </header>

CSS

h1.logo {
left:50%;
margin-left:-80px;
float: none;
text-align: center;
}


h1.logo a {
background:url(images/logo.png) no-repeat;
width:181px;
height:127px;
display:block;
text-indent:-9999px;
float: none;
text-align: center;
cursor: pointer;
}


.header-bg {
height: 190px;
background: url(images/bg-header.png) repeat;
}
4

3 回答 3

0

您的模板设置为使用该WP_HOME值作为链接,可在 Wordpress Admin 下的Settings > General. 您还可以通过显式设置以下常量值来覆盖此值wp-config.php

define('WP_HOME', 'http://example.com');
define('WP_SITEURL', 'http://example.com');

如果您想对其进行硬编码,您也可以只编辑模板文件(如果它永远不会更改,则效率更高),替换<?php echo get_option('home'); ?>为您想要的 URL。

于 2013-07-23T01:56:24.173 回答
0

您可以尝试通过 css 将您的徽标设置为背景图片而不是把它放在这里吗?

<h1 class="logo abs">
   <a href="<?php echo get_option('home'); ?>"/>
     <image src="">  
   </a>
</h1>

试试这个,告诉我它是怎么回事。

于 2013-07-23T02:23:51.047 回答
0
>  using this css you can display your logo with your home url.


h1.logo {
    float: none;
    left: 50%;
    margin-left: -80px;
    text-align: center;
    z-index: 10000;
}

h1.logo a img{
                display:block;
}

在此处输入图像描述

于 2013-07-23T04:27:19.487 回答