-
Sameer
Hi.
On desktop, how to bring search modal to the same line as rest of the navigation links? Right now, it creates its own 3rd row in navigation.
Thanks.
-
Alvind
Hi there,
Try adding this CSS:
.inside-header .main-navigation .inside-navigation { flex-wrap: nowrap; } -
Sameer
Thanks.
Next, on mobile, I’d like to move the search modal on the right side of the hamburger menu and then center both.
Please guide.
-
Try this CSS:
@media(max-width: 1080px) { .menu-bar-items { order: 10; } nav#mobile-menu-control-wrapper { margin-inline: auto; } } -
Sameer
Thanks, works well but please add some space/margin below the logo.
-
Try this:
@media(max-width: 875px) { .inside-header.grid-container { row-gap: 20px; } } -
Sameer
Hi. Should this replace your previous code?
-
No, you need to add it along with the previous code.
-
Sameer
Thank you, Ying.
-
You are welcome 🙂
Viewing 10 posts - 1 through 10 (of 10 total)
- You must be logged in to reply to this topic.