Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Anchor Tag Not working

Tags:

html

css

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

like image 505
Jagadeesh J Avatar asked Nov 08 '13 08:11

Jagadeesh J


People also ask

Which is correct for anchor tag?

HTML <a> Tag The <a> tag (anchor tag) in HTML is used to create a hyperlink on the webpage. This hyperlink is used to link the webpage to other web pages or some section of the same web page. It's either used to provide an absolute reference or a relative reference as its “href” value.

How do I show the anchor tag in HTML?

The <a> tag defines a hyperlink, which is used to link from one page to another. The most important attribute of the <a> element is the href attribute, which indicates the link's destination. By default, links will appear as follows in all browsers: An unvisited link is underlined and blue.


1 Answers

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;
    }
like image 154
Krish R Avatar answered Oct 04 '22 03:10

Krish R