php页脚链接

时间:2013-04-15 21:31:23

标签: php html css wordpress hyperlink

如何让我的页脚标题成为链接?目前我有这个代码:

                    <div id="footer">
                     <div id="foot">
                     <ul class="clearfix">
                  <li>Stores 
                     <ul>
            <li><a href="/stores/speedway">Speedway</a></li>
            <li><a href="/stores/ina">Ina</a></li>
            <li><a href="/stores/grant">Grant</a></li>
            <li><a href="/stores/phoenix">Phoenix</a></li>
            <li><a href="/stores/mesa">Mesa</a></li>
            <li><a href="/stores/flagstaff">Flagstaff</a></li>
        <li><a href="/stores/sports">Sports Exchange</a></li>
    </ul>
</li>

我希望标题STORES成为链接或可点击并转到商店的主页我如何在不改变白色的情况下这样做。 我该怎么做。

2 个答案:

答案 0 :(得分:1)

只需使用内联样式覆盖着色。

<a href="/stores/" style="text-decoration:none;color:white">Stores</a>

答案 1 :(得分:0)

您可以在onclick事件中使用jQuery或JavaScript来执行链接行为。

<li id="#stores" onclick="location.href='/stores/';">Stores
...

然后在样式表中为商店ID设置样式:

#stores {
   color: white;
   ...
}