Forum Moderators: not2easy
Can you load a picture and hyperlink it all in CSS?
I thought about overlaying a 150x150 transparent GIF but this would be overkill and may not work in all browsers.
Thank you for any thoughts.
Your solution works except:
1) I am getting a hover color which I don't know how to turn off for this instance of href only?
2) How to implement your solution from CSS?
Thank you.
The difference between classes and ids is that ids tend to be more effecient. They load a tad faster because the browser only has to apply it to one element. Ids can only be attached to one item. Classes can be attached to any number of elements. And the elements can have multiple classes by seperating them with a space.
Hope that helps.
How do I turn off the effect of a:hover{background-color: #D6EEA0;} just for the following instance
<td>
<a href="" style="display: block; width: 150px; height: 150px;">
</a>
</td>
I tried adding something like background-color: #?; to the inline style above but it did not seem to work and I have no idea how to express none for color :)
I just want to see the hand pointer, right now the whole picture is getting covered with the bg color.
Thank you.