Showing 1 – 1 of 1 replies
alexis9204

How can I make the Mega Menu navbar […]

alexis9204 PURCHASED
6 years ago
How can I make the Mega Menu navbar stay on the top of the page the whole time? To be in a fixed position, like the menu of the one pages.

Thanks
Designing World
6 years ago
Hi,
Add this css in your "style.css" file.

.header_area {
background-color: #fff;
box-shadow: 2px 3px 2px rgba(0, 0, 0, 0.15);
position: fixed;
width: 100%;
z-index: 999;
}

Thank you.