Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #111119
    heartland
    Participant

    My site I would like to move the search box down below the logo/title. And if it’s possible into the menu bar. thank you.

    #111159
    Mahesh
    Keymaster

    @heartland: Go to Dashboard=> Appearance=> Customize=> Additional CSS box and add the following CSS:

    @media screen and (min-width: 961px) and (max-width: 990px) {
      	#branding .searchform {
      	    top: 21.1em;
          }
    }
      
    @media screen and (min-width: 991px) and (max-width: 1024px) {
      	#branding .searchform {
      	    top: 22.3em;
          }
      }
      
    @media screen and (min-width: 1025px) {
      	#branding .searchform {
      	    top: 23.2em;
          }
    }

    Regards,
    Mahesh

Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘How to reposition search box?’ is closed to new replies.