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.

example: http://www.ehow.com/how_2196172_ping-mac-computer.html

As you can see the "helpful?" element is stuck in place even when you scroll the rest of the page. I'm not sure if this can be done with just css or needs js (preferably jQuery). How can this be done?

share|improve this question

2 Answers

up vote 8 down vote accepted

You have to fix the element position. Try something like this:

div#ID {
    position: fixed;
    bottom:10px;
    left:10px;
}

Hope it helps!

share|improve this answer

That is using position: fixed which positions an element with respect to the browser view port.

share|improve this answer

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.