swa66

msg:3739440 | 11:02 pm on Sep 5, 2008 (gmt 0) |
I'm a bit afraid it's going to be javasript that'll be the answer, but I'd love to be proven wrong. Perhaps something we need to put on the CSS3 (or CSS4) wish list.
|
piskie

msg:3739478 | 11:45 pm on Sep 5, 2008 (gmt 0) |
I also think that is JavaScript, not CSS.
|
csuguy

msg:3739494 | 12:26 am on Sep 6, 2008 (gmt 0) |
actually - here's a simple solution using css. It may not work for image maps (I've honestly never used them). in your code wrap the objects of class crack in an anchor tag. For example: <a class="hack" href="javascript:void()"><div class="crack"></div></a>
now in your css put this: a.hack:link .crack,a.hack:visited .crack { background-color:transparent; }a.hack:hover .crack { background-color:red; }
that should work! It has its limitations on what can be put inside of the anchor tag (which is why my drop-down ain't working...) but hopefully it works for you. Tell me if it does or not! Ryan
|
ctoz

msg:3739719 | 4:40 pm on Sep 6, 2008 (gmt 0) |
Ryan, thanks, nice try, no cigar. Fixed it with images underneath the transparent areas and some script. Messy. Cheers
|
csuguy

msg:3739886 | 1:00 am on Sep 7, 2008 (gmt 0) |
ya that was going to be my other suggestion, but it's definitely a messier solution. Well, glad you got it working. Ryan
|
|