• But there is one question from few guys, and I’m joining – how make it go to the right side of menu bar?

Viewing 1 replies (of 1 total)
  • ilanaguttman

    (@ilanaguttman)

    You can do this by editing searchform.php in the theme folder and adding some CSS. I found that each of the items in the menu had a
    <li> class, so I added <li class="menuSearch"></li> around the code.

    Then in style.css I added

    .menuSearch{
        display: inline;
        float: right;
        margin-right: 7px;
        position: relative;
        list-style-type: none;
    }

    I hope this helps!

Viewing 1 replies (of 1 total)
  • The topic ‘Makes it's job’ is closed to new replies.