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!
Wow, thank you! I’ll give that a try!