How about this? I have 2 solutions (but that means to edit all the code in your
td.pipelabel tags.) :
(Recommended)
Code: Select all
<a href="../" alt="SMBX Home"><img alt="SMBX Home" id="smbx-home" onmouseout="this.src='../smbx-home-1.gif';" onmouseover="this.src='../smbx-home-2.gif';" src="../smbx-home-1.gif"></a>
And maybe something like this in CSS:
Code: Select all
div#smbx-home {
width: 62px;
height: 30px;
border: 0px;
}
Or you can use a CSS-only solution if you don't want JavaScript events in your HTML tags:
Code: Select all
<a href="../" alt="SMBX Home" id="pipe-link"><div id="smbx-home"></div></a>
And maybe something like this in CSS:
Code: Select all
div#smbx-home {
width: 62px;
height: 30px;
border: 0px;
background-image: url('../smbx-home-1.gif');
}
div#smbx-home:hover {
background-image: url('../smbx-home-2.gif');
}
a#pipe-link {
display: block;
width: 62px;
}
Of course this is an example for the SMBX HOME link but with both solutions you'll need to use 2 images: "
smbx-home-1.gif" and "
smbx-home-2.gif". Your choise.