For those of you who are (not) interested. Here’s how I’ve done it:
Add this to the CSS:
dl.image_map {
display: block;
width: 960px;
height: 198px;
position: relative;
padding: 0px;
}
a.LINK0 {
left: 549px;
top: 135px;
background: transparent;
}
a.LINK0 {
display: block;
width: 250px;
height: 0;
padding-top: 13px;
overflow: hidden;
position: absolute;
}
a.LINK0:hover {
background: transparent;
border: 1px dashed black;
color: black;
}
Then add this to a ‘graphene_header’ action hook in widgets:
<dl class="image_map">
<dd><a class="LINK0" title="Email" href="mailto:email@email.com"></a></dd>
</dl>
Again, probably a better way to do it but this works for now!
Cheers
Dikkie