Issue
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
Solution
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;
}
Answered By - Krish R
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.