MyBB Community Forums

Full Version: Currently edding the Flatty theme.
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
If you navigate to the site here: http://www.distributiongaming.com/forums/ you will be able to see that the MyBB nav is a lower width than normal. This is intentional.

I am trying to move it into this position:
[Image: yZnMz]

However, that would involve removing a position: absolute; style, which is stored inside the div (screenshot taken from Inspect Element) :

[Image: OOcrH]

I've looked into the template where the panel div, along with other divs in the same location are and found no style in that div. It's nowhere in the CSS for the panel. I even went into PHPMyAdmin and checked for it in the DB. Any help would be greatly appreciated!
you will find it in the js file provided with the theme

return $spanel.css({position:windowTop>stickyTop?"fixed":"absolute"})}
Thanks! That's greatly appreciated!

For anyone else reading this it is also possible to override like so:

#panel {
position: static !important;
}