Fix: Top bar overlayed on top of menu nav

Menu and topbar should be fixed.

But menu doent stay and topbar covers menu.

How can I fix please?

Many thanks

Hi There,

Thank you for writing in, please remove the positioning property (width, position, top), you applied on the topbar.


Then lets make the entire masthead/header a fixed instead.

@media (min-width: 978px) {
	.masthead.masthead-inline {
		position: fixed;
	    top: 0;
	    right: 0;
	    left: 0;
	    z-index: 2;
	}
	.x-container.offset {
		margin-top: 152px;
	}
}

Hope it helps,
Cheers!

That is brilliant! Thank you!

You’re welcome! :slight_smile:

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.