• Hey everyone,

    I’m fairly new to wordpress and I’m just playing about with it until I’m confident enough to create my own theme for it.

    Query – From the dashboard, I click on appearance > widgets and I add a search form to my sidebar. My question is this. What if I don’t want this search form to be in the sidebar, what if I want it to be situated at the top-right of the header? Can I style it this way using css?

    If anyone could shed any light on how this could be achieved it would be much appreciated!

Viewing 1 replies (of 1 total)
  • You could try absolutely positioning it with CSS – eg:

    #searchform {
    position:absolute;
    top:2px;
    right:2px;
    }
Viewing 1 replies (of 1 total)
  • The topic ‘Search field placement’ is closed to new replies.