Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Here is the HTML script of my header:

<div class="header">
<div class="logo"><a href="Default.aspx"><img src="style/images/logo.png" alt="" /></a></div>
<div class="toplink"><a href="Signin.aspx">Sign in</a></div>
<div class="search">
    <form class="searchform" runat="server" method="get">
        <input type="text" id="s" name="s" value="Search for photos" onFocus="this.value=''" onBlur="this.value='Search for photos'"/>
    </form>
</div>
</div>

And here is the CSS script:

.logo {
    padding: 30px 0;
}

.logo img {
    display: inline;
} 

.toplink {
    position: absolute;
    bottom: 40px;
    right: 280px;
    font-size: 14px;
}

.search {
    position: absolute;
    bottom: 10px;
    right: 0;
    font-size: 14px;
    width: 330px;
}

Somehow the Sign in link isn't clickable, but when I remove the absolute position, it works normally. Is there anyway to make the link work while still keeping the position? Any suggestion is appreciated, and thanks in advance.

-Edit- Turns out the problem lies somewhere else. Actually I'm using masterpage and I created a default ASP page using it. The problem only occurs when I test that ASP page, not the HTML file that I used to create the masterpage. Sorry if I sound complicated but yeah, the problem's sort of complicated to me. Hopefully someone can point out the reason for me.

share|improve this question
3  
Just tested, it is clickable! You need to provide more information concerning the remaining of your code! The problem doesn't come from what you have on your question! – Zuul May 19 '12 at 7:34
You should also include a list of brosers/os you have tested this on. It may be limited to a unique combination of these, especially given zuul's comment – Steve Robillard May 19 '12 at 7:36
jsfiddle.net/Wh2sK - Works for me. – Madara Uchiha May 19 '12 at 7:37
Okay this is weird because when I test it in a HTML file it works normally, but when I test it with VisualStudio (I'm working with ASP.NET) the problem occurs. I have no idea the reason though. – strawberryjam May 19 '12 at 7:42

1 Answer

up vote 5 down vote accepted

Try adding z-index:10; to .toplink{...} class.

share|improve this answer
it works perfectly! Thanks a lot! – strawberryjam May 19 '12 at 8:02
with z-index you are specifying the layering layout. It's something like this. element with z-index: x stays on the top of elements with z-index: (less than x) and behind the elements with z-index: (greater then x). Hope I've succeed to make you understand. – Krishanu Dey May 19 '12 at 8:09
Thank you for the explanation! I hope that you don't mind my silly question but I'm still wondering which element stayed on top of the hyperlink before I set z-index value for the toplink class? – strawberryjam May 19 '12 at 8:34

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.