Skip to content

24 ways to impress your friends

Vote down?

doggy

My fix for unclickable links:
1) I found they’re are not really unclickable sometimes, the only problem was that cursor wont turn to hand/pointer. But I found out that z-index helps in some cases too.
so, foolproof solution is:
a {
_position: relative;
_z-index: 1;
_cursor: pointer;
}
Underscore hack makes sure only IE will understand this part of css, but it’s not mandatory, or you can use conditional tags if you like.
2) I don’t like position: relative cause you know, sometimes you need to use position in some other way, and found out that on my page I don’t need it, z-index and cursor: pointer do the trick without it.