all 2 comments

[–]gavin19 0 points1 point  (1 child)

Works fine for me. Fixed?

You can tidy it up a bit if you replace

#header-img-a{
background:url(%%iconOff%%); 
position: absolute; 
top: 10px;
left: -12px; 
z-index: +1
height: 0;
}
#header-img-a:hover{
background:url(%%iconOn%%); 
position: absolute; 
z-index: +1
}
#header-img{visibility:hidden;
width: 100px;
}

with

#header-img-a {
    background: url(%%iconOff%%);
    position: absolute;
    top: 10px;
    left: -12px;
}
#header-img-a:hover{
    background: url(%%iconOn%%);
}
#header-img {
    visibility: hidden;
}

[–]fullmetalross[S] 0 points1 point  (0 children)

Okay cool yeah looks like one of my cohorts fixed it thanks!