MyBB Community Forums

Full Version: header bar have space while scroll
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
when i scroll down Top bar having distance how to fix  / top bar have some space browser and forum have some distance i post here pic 

anyone know or have any idea about this where and  how to fix 

(emerald extend theme )

Thank You 

[Image: Screenshot_373.png]

[Image: Screenshot_374.png]
You should fix all errors on your site before you proceed.  Most likely, one of the contributors may be the missing CSS file:

https://forum.kuttysoft.com/css/skin.css

You are also repeating the "customcolor_headerinclude" (twice) in your header this may be messing stuff up.

Nonetheless, go to your extra.css and in the selector of .haut add "top: 0;" to it so it looks like this:

.haut {
	background: #252525;
	width: 100%;
	float: right;
	box-shadow: 0px 0px 3px #111;
	position: fixed;
	height: 60px;
	z-index: 1000;
	text-align: left;
top: 0; /* added to make menu bar stick to top of page */
}