MyBB Community Forums

Full Version: News Bar - top of screen?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi all, my first post here!

I've installed News Bar from here.

Does anyone know how I can get the News bars to show at the top of the page? above everything including the banner.


Thank you very much Big Grin
I'm guessing the plugin uses basic HTML and CSS. I constructed my own news bar by using this CSS property.

#newsbar { position:fixed; top:0; left:0; }

For browsers newer than IE6, works for all Firefox versions, any element with the ID newsbar will remain at the very top of your screen at all times. If you use an older browser, it will be there but won't scroll with the page.



Now if you don't want it to scroll with the page, change the position from fixed to absolute.