Log in

View Full Version : position fix



davelf
01-05-2010, 06:28 AM
i need a js that can make effect like this page:

http://moronicbajebus.com/

when you scroll down the menu always in the position, the only thing that scroll only the main content.

http://www.dynamicdrive.com/forums/attachment.php?attachmentid=3094&stc=1&d=1262672780

i don't know how to explain it clearly, i hope you can understand what i mean.

thanks a lot.:)

smrnsmile
01-05-2010, 06:46 AM
These are the reference site that you can use
http://www.cssplay.co.uk/layouts/fixed.html

http://www.wduffy.co.uk/blog/wp-content/demos/jquery-scrolling-element/

The other option that u can do is give id to ur menus and assign postion as fixed.
Example:
#menu {
position:fixed;
display:block;
top:0px //u can give in pixel how much u want to move ur menu down
left:0px //pixels for moving ur menu to left as required
}

davelf
01-05-2010, 08:04 AM
thanks smrnsmile...