tags:

views:

48

answers:

1

Hi, the title says it all, could someone take a quick look, why the text in the dark grey isn't selectable.

I think it's masked by a invisible layer or somewhat, but I don't see it.

The url:

http://www.coldcharlie.nl/test/

Edit: I think it's the shadow part, I'll take a look at that first.

+6  A: 

Your test is being overlapped by:

<div id="shadow">
  <!-- This is the shadow part -->
</div>

Using either Chrome or FireFox + FireBug, you have a right click + Inspect Element option that's great for cases like this, I recommend either combination.

Nick Craver
thanks, I was just editing my question, :)
Chris
@Chris - Almost forgot, to fix, change `div#shadow { z-index: 100; }` to `-1`, works fine here.
Nick Craver
that was indeed also a option. The container for the shadow image was way to big, by making the div smaller in height, the text was selectable again :)
Chris