Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi Sally, since you already have a search field in the sidebar, you could reposition it with CSS.

    One way to do it is installing a plugin like Simple Custom CSS, or the one included in JetPack to add custom CSS to your site.

    Then add the following CSS:

    #search-2 {
    position: absolute;
    top: 229px;
    width: 250px;
    margin-left: 35px;
    }

    Obviously you can make the search field wider (width), or smaller and move it a little more or a little less to the left or right (margin-left). I hope this is more or less what you have in mind.

    While you are at it, you could also add some style to it, to make it fit a little better with your header, f.ex. this would add a little green as in your logo and make the corners rounded.

    input.inputblur {
    border-top-color: #8ec63f;
    border-left-color: #8ec63f;
    border-radius: 5px;
    }

    GL with it!

    Thread Starter Miravacas

    (@miravacas)

    Wow, thank you! I’ll give that a try!

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Search in Main Nav Menu’ is closed to new replies.