Hi, all. I need help with what I'm sure will be an easy task for most of you here. I'm new to CSS and I've got the following code working beautifully and now I need to make the image I specify below linkable. In short, I need myurl.com/image.jpg to link to myurl.com/index.htm. What is the extra piece of code that I need to add?
Above the </head>, I have:
CODE
<style type="text/css" media="screen">
body
{
image:
url('http://myurl.com/image.jpg')
}
body {margin:0px; padding:0px;}
img.y
{
position:absolute;
left:50%;
width:40px;
margin-top:-354px;
margin-left:252px;
padding:15px;
z-index:1000
}
</style>
and below the <body>, I have:
CODE
<img class="y" src=http://myurl.com/image.jpg width="198" height="26" alt="menu">