Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+1 vote
1.1k views
in Q2A Core by

How to make topbar fixed static in snow theme like twitter bootstrap

http://twitter.github.io/bootstrap/

Q2A version: 1.6

1 Answer

+2 votes
by
selected by
 
Best answer
In default css find below.. if you can't find on the same line you can find the class/id
 
on line #60 in body
 
body{
/*add this*/
position: relative;
}
 
on line #216 in #qa-login-bar
 
#qa-login-bar{
/* add this */
position: fixed;
top: 0;
right: 0;
bottom: auto;
left: 0;
z-index: 9999;
}
 
on line #422 .qa-body-wrapper
 
.qa-body-wrapper{
/*add this*/
padding-top: 30px;
}
...