5

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

4

3 回答 3

6

z-index#navigatorstyle.css 中添加,

    #navigator {
        display: none;
        font-family: 'Titillium Web',sans-serif;
        left: 0;
        position: fixed;
        top: 199px;
        z-index: 100;
    }
于 2013-11-08T08:20:13.707 回答
5

navigator在页面后面

只需添加z-index: 1000(任何大于您内容的 z-index 的内容)或将您的导航器代码移动到内容代码后面

于 2013-11-08T08:18:02.337 回答
1

尝试提供更高的 z-index 这对我有用。

#navigator {
position: fixed;
top: 199px;
left: 0;
z-index: 10001;
}
于 2013-11-08T08:19:01.207 回答