Archived topic
Search bar in a toggle box...
3 replies · Started by Peter on February 5, 2020
Viewing posts 1–4 of 4
Hi,
Is there any way to add the search bar to the same place where the menu bar pops up/down on my page?
Cheers,
Pete
Hi there,
try this CSS:
.inside-navigation {
display: flex;
flex-direction: column;
}
.navigation-search {
position: static;
display: none;
order: 10;
}
.navigation-search.nav-search-active {
display: block;
}
Hi David!
You are a star!
Works like a charm!
Thanks a million!
Pete
Awesome - glad to be of help
This archived topic is closed to new replies.