Site logo

Archived topic

how to make search bar open in desktop

7 replies · Started by johnaps on January 1, 2022

Viewing posts 1–8 of 8

Hello, i want to make my search bar like this
https://imgur.com/a/r1H0oKv

to be open when on desktop...

How can i do it?

Hi there,

depends on what and where the search field is.
If you can share a link to where i can see the existing search icon i can advise on whats possible.

It's kind of tricky, give this CSS a try, but as the search bar is set to position: absolute , you'll need to write custom CSS to avoid overlapping between menu items and the search bar:

body .navigation-search {
    left: 0;
    right: 0;
    pointer-events: auto;
    visibility: visible;
    opacity: 1;
} 

thank you very much!

Is there a way to add text to the placeholder?

Thank you very much!

No problem :)

This archived topic is closed to new replies.