In my style sheet I am setting the background image, that image just so happens to be a logo, and I want to link that logo. Is there a link tag I can add to the CSS that will add this link to that background image? I tried setting a linked transparent gif over that background image but that didn't work, at least not in firefox.
.topimage{
background-image:url(../images/leftnavTop.gif);
background-repeat:no-repeat;
vertical-align: top;
}Try putting an anchor in that div, display:block and visibility:hidden. Maybe even a heading.
<h1 class="topimage"><a href=http://www.webdeveloper.com/forum/archive/index.php/"homepage.html">Company Name</a></h1>
with
.topimage a { display:block; visibility:hidden }
.topimage{
background-image:url(../images/leftnavTop.gif);
background-repeat:no-repeat;
vertical-align: top;
}Try putting an anchor in that div, display:block and visibility:hidden. Maybe even a heading.
<h1 class="topimage"><a href=http://www.webdeveloper.com/forum/archive/index.php/"homepage.html">Company Name</a></h1>
with
.topimage a { display:block; visibility:hidden }