-char-
04-30-2005, 05:08 PM
Well.. I've seen on some sites were if you hover over the link it goes down slightly. It seems pretty cool, but I only want it to work when I hover over an image that links somewhere... not a text link. Is this possible in any way? Would I have to apply it to each image tag? Or would it go with all the rest of the css in my stylesheet? :S
~x~
{ps. sorry if this is in the wrong forum!}
hard to give you a precise answer without seeing an example of what you want, but you can add this to your css area...
a.special:hover {
position:relative;
left:3px;
top:3px;
}
then in the specific links you want to control with it, add this to the link tag...
class="special"
-char-
04-30-2005, 05:44 PM
thanks, but I think I meant the other way round like only the images go down and text links stay the same as I have put in the css. unless thats what you meant...
<a href="address you want image to click to"><img src="your file name.gif(or jpg)" border="0" class="special"></a>
would I just stick it in there like that?
edit: wooohoo it works... I put <a href="address you want image to click to" class="special"><img src="your file name.gif(or jpg)" border="0"></a> instead :D thanks, your a star ;)