Jagadeesh J
Jagadeesh J

Reputation: 1301

Anchor Tag Not working

This is killing me for hours. Just a simple Anchor tag is not working.

<div id="navigator">
    <div class="show">
        <span><a href="?page_id=28">PORTFOLIO</a></span><span class="carat"></span>
    </div>
</div>

Wherever I am trying to put an anchor tag, its not working

CSS is :

#navigator {
position: fixed;
top: 199px;
left: 0;
}

The page is here.. http://myingage.com/?page_id=25

Upvotes: 6

Views: 31120

Answers (4)

Barremian
Barremian

Reputation: 31125

In my case, the pointer-events CSS property of the parent element was set to none. Changing it to pointer-events: auto fixed the issue.

Upvotes: 0

Adassko
Adassko

Reputation: 5343

your navigator is behind the page

just add z-index: 1000 (anything bigger than z-index of your content) or move your navigator code behind the code of content

Upvotes: 5

Krish R
Krish R

Reputation: 22741

Add z-index in #navigator in style.css,

    #navigator {
        display: none;
        font-family: 'Titillium Web',sans-serif;
        left: 0;
        position: fixed;
        top: 199px;
        z-index: 100;
    }

Upvotes: 5

Vikram Deshmukh
Vikram Deshmukh

Reputation: 15696

try giving a higher z-index This works for me.

#navigator {
position: fixed;
top: 199px;
left: 0;
z-index: 10001;
}

Upvotes: 1

Related Questions