MyBB Community Forums

Full Version: [request] hwo to add upper bar never hidden
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
is that possible ?

when ever i scroll down or up the bar will move with the site
picture will explain what i mean same as the picture
Do you want this for your own site or the MyBB Community Forums?
for My own site i have my own " mybb forum "

this is a very good example of what i want scroll down after open the link

http://www.forexfactory.com/forum.php

is this a plugin like this in mybb
you can make any element to scroll with page just by adding position:fixed; in its css

try something like this.....

add this to the css.... and change the background and width as per your forum.......

#fixedpanel {
background: #000000;
width: 940px;
position: fixed;
top: 0px;
z-index: 999;
margin-left: auto;
margin-right: auto;
}


and add this to the header or index template a per your need...... adding to header will render this bar in all pages while adding in index will add it only on the index page
<div id="fixedpanel">
----Content goes here---
</div>
(2013-02-16, 06:39 AM)mmadhankumar Wrote: [ -> ]you can make any element to scroll with page just by adding position:fixed; in its css

try something like this.....

add this to the css.... and change the background and width as per your forum.......

#fixedpanel {
background: #000000;
width: 940px;
position: fixed;
top: 0px;
z-index: 999;
margin-left: auto;
margin-right: auto;
}


and add this to the header or index template a per your need...... adding to header will render this bar in all pages while adding in index will add it only on the index page
<div id="fixedpanel">
----Content goes here---
</div>

thanks man for your help
i will try it