尝试链接图像,但它会保持链接所有其他图像

时间:2013-06-24 19:01:23

标签: html css wordpress hyperlink

我正在尝试在页脚中链接图像,但每当我链接一个图像时,链接就会传播到页脚中的其他小部件。

如何阻止此事?

My site

这是我用来使图像链接的代码......

<a href="http://www.pastorsdigitalbooks.com"
target="_blank"><img src="http://nzbound.kiwi.nz/website/wp-content/uploads/2013/05/logo-500x500.png";width="165"; height="165";</a>

1 个答案:

答案 0 :(得分:2)

您将link放在整个页脚div 上,所以很明显它会显示在页脚的整个区域。
您的代码:

<a target="_blank" href="http://www.pastorsdigitalbooks.com">
<div id="footer-widget2"> //..... and so on

您的代码应该是:

<div id="footer-widget2">
<div class="textwidget">
<p align="center">
<a href="">Sent from: Bible Baptist Church</a> // ... adn so on

注意:您正在整个页脚小部件上应用链接,这就是为什么它在整个div.try上重叠以格式化您的代码。