I’m so confused!
I do this all the time: create a display:block link in my header with fixed height and width, the company’s logo as a background image, and the text-version of the logo displayed off-page with a negative margin. And, it always works until now! It’s as if the background image is messing with the link!
Here’s the url: Bar Beverage Control | Liquor Inventory, Auditing and Management System. | Bar Beverage Control | The Bar Management and Inventory Solution
You’ll see I added a background:gray to the element so you can see that when you mouseover the logo’s padding the link works, but when you mouseover the logo itself there is no link. Why?
Here’s the code:
body.custom div#header div#top.header-link-text a {
background: url("custom/images/header.gif") no-repeat scroll left top gray;
display: block;
float: left;
height: 64px;
padding: 0 0 5px;
text-indent: -9000px;
width: 394px;
}
And here’s an image so we’re on the same page:

Any ideas?