如何在Tumblr CSS上链接固定图像?

时间:2015-01-22 16:38:18

标签: css image hyperlink linker tumblr

对于我的Tumblr主题,我想让屏幕右侧的这4个固定图像链接到另一个页面。

My Tumblr's link

这里是其中一张图片的HTML:

<img src="http://i851.photobucket.com/albums/ab71/rachelala101/fandomsbuttons1-1_zps43ab3b55.png" id="icon1" width="90px">

以下是CSS:

#icon1 {
    display:block;
    position:fixed;
    right:20px;
    top:60px;
    z-index:130
}

我尝试使用标签链接它,但随后图像完全消失。

1 个答案:

答案 0 :(得分:1)

欢迎使用StackOverflow,

您应该使用标记锚a。这是一个工作示例,将#替换为您的链接。

<ul>
    <li><a href="#"><img src="http://i851.photobucket.com/albums/ab71/rachelala101/fandomsbuttons1-1_zps43ab3b55.png" id="icon1" width="90px" class="icon1_rollover"/></a></li>
    <li><a href="#"><img src="http://i851.photobucket.com/albums/ab71/rachelala101/fandoms%20buttons%201-1-2_zpsynh4farl.png" id="icon2" width="90px" class="icon2_rollover"/></a></li>
    <li><a href="#"><img src="http://i851.photobucket.com/albums/ab71/rachelala101/fandomsbuttons1-3_zps10c8734d.png" id="icon3" width="90px" class="icon2_rollover"/></a></li>
</ul>

CSS

ul {
    list-style: none;
    position:fixed;
    right:20px;
    top:60px;
    z-index:130;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration:none;
}

您可能需要阅读此tutorial

顺便说一句好博客。