"float: right;" doesn't work

Hi,

I want to move the menu to the right. I added “float: right”. But it doesn’t work: http://jsfiddle.net/8Observer8/aSfrj/3/

Thank you!

It’s being stopped by position: fixed, so you’d have to remove that, or set it to right: 0; (although that won’t be too good, as it will sit over the other elements at the moment.

Thanks! I did it: http://jsfiddle.net/8Observer8/aSfrj/6/

Can I hide the menu? I want add a button “Hide” (“Show”).

I decide to do not fixed. It does not look good, but will: http://jsfiddle.net/8Observer8/aSfrj/7/

Thank you!