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

how to make this bar movable so that it will remain at same position while scrolling the page.

Q2A version: 1.5.3

1 Answer

0 votes
by

use position fixed or absolute

first you need to add relative position to your html,body

html,body{

position: relative

}

#qa-login-bar{

position:absolute /* you can use fixed as well*/

top:0;

left:0;

right:0;

z-index:999 /* to keep it on the top of all html elements */

}

.qa-body-wrapper{

padding-top:30px /* if you found your header going below top bar than increase padding */

}

 

...