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.

I have some text at the bottom of my page saying Built By Me in it. I have this in a fixed position 35px away from the bottom and left of the window so it moves as you scroll. What i actually want is to fix it vertically, so it moves as you scroll up and down and is always 35px away from the bottom of the window, but have it positioned 35px away from the left edge of the page (not screen) so it does not move when you scroll horizontally.I checked out this solution Position element fixed vertically, absolute horizontally but it does not seem to work for me unfortunately. FYI i am currently using the following code to fix it top and bottom which works fine (but also moves when you scroll horizontally):

#sticky {
position: fixed;
bottom: 35px;
left: 35px;
width: 206px;
padding: 0;
font-size: 0.6875em;
}

*html #sticky {
position: absolute;
bottom: 0px;
}

<div id="sticky">
Built by Me
</div>

Thanks so much for any pointers you could give as i can't for the life of me work out how to fix it on only one axis?

Dave

share|improve this question
Why is this tagged PHP? – Reanimation Jan 27 '11 at 17:45

2 Answers

up vote 1 down vote accepted

I believe the only way to achieve this is to use position: fixed; and calculate the value of left on page load or resize by determining where the left edge of the "page" falls and then adding 35px to it. Let me know if you would like me to elaborate.

share|improve this answer
Thanks very much for that Scott, i was hoping there was another way but that's all good, I used the $(window).scroll(function () { to accomplish this. What is very strange though is it doesn't seem to work if i increment the left pos, however if i use the following code it works perfectly in all browsers, out of interest have you any idea why that might be as surely this is just leaving it as it was originally? Thanks so much for your help <script type="text/javascript"> $(window).scroll(function () { $("#sticky").offset({ bottom: 35, left: 35 }); }); </script> – deshg Jan 31 '11 at 4:34
That's a very good question. It must have something to do with scroll, but I must confess I'm not as versed in jQuery as I should be, so I can't say for sure. Glad I could help, though! – Scott Cranfill Jan 31 '11 at 14:41
No worries scott, thanks very much for your help! – deshg Jan 31 '11 at 18:01

Keep the fixed div.

And have the following javascript code which will take care of horizontal moving.

$(window).scroll(function(){
  $('.fixed_div').css('left',-$(window).scrollLeft());
});
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.