I want to create a tool/application bar like the one in the bottom of
facebook, just in the top of the browser instead, and i found this:
.fixed {
position: fixed;
top: 0; /* or any value ! */
_position: absolute;
_top: expression(eval(document.documentElement.scrollTop)
+"px");
/*
OR FOR NON COMPLIANT DOCTYPES
_top: expression(eval(document.body.scrollTop)+"px");
*/
}
It seems to work, however, my "bar" places it self to the right of the
main container (container div), how do i get it to center correctly
like the container div?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Blueprint CSS" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/blueprintcss?hl=en
-~----------~----~----~----~------~----~------~--~---