vote up 0 vote down star

hello Sir i have been searching over a month for a solution like this,,,

the div on website below that have search at the bottom and it always remain sticked above status bar if u scroll down.

http://www.outlawdesignblog.com/

can u kindly point me to a solution

flag

2 Answers

vote up 1 vote down check

Here's a self-contained example of how they do that, tested in IE7 and FF3:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
   "http://www.w3.org/TR/html4/strict.dtd">
<html><head><style>
#staticpanel {
    background:#B85503 none repeat scroll 0 0;
    border-top:1px solid #C3702C;
    bottom:0;
    padding:12px 0;
    position:fixed;
    width:100%;
    z-index:100;
}
</style></head><body>
<div id='staticpanel'>Hello!</div>
</body></html>
link|flag
coooooollll thanks a lot :) works in IE too :) - nick john – nickjohn Jul 18 at 12:52
just to say thanks again, you are awesome :D – nickjohn Jul 18 at 12:53
My pleasure ! – RichieHindle Jul 18 at 13:01
vote up 0 vote down

If i remember right IE doesnt support position:fixed. The easiest way to emulate position:fixed is too use dynamic expressions and have the expression calculate and update the absolute y position etc.

RichieHindle's example will however work for the other browsers.

link|flag
I tested my example in IE7 and it worked perfectly. IE6 might be a different story. – RichieHindle Jul 18 at 12:28

Your Answer

Get an OpenID
or

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