I'm not able to click a link inside of fixed div

css, fixed, hyperlink

Solution

One of the top elements is probably overlapping your div. Try adding `z-index: 1;` to your `.user_minibar`.

Problem

This link, which is inside of a div called `.user_minibar` with `position:fixed;` property, and being positioned at the top of the page, can't be clicked. When I put my mouse over that link, my cursor doesn't even turn into a pointer. Unless I scroll down a little bit, I can't click it (it works to me only when my link is precisely below the `h1` tag (weird, right?)). Here's my jsfiddle: http://jsfiddle.net/Arkl1te/9XkHa/

Original source