wordpress页面上的搜索框出错[关闭]

I have this site http://www.laeconomista.com/ And installed a searchbox but when I try to write on this and try to search something

the searchbox automatically reload the page, and does'nt work fine

I think that is a problem with css or something with the header form input (submit or text)

Please can help me how can fix this

thanks for all...

For some reason you have an anchor tag which has not closed, you should just remove it. You should remove it or close it.

<a href="http://www.laeconomista.com/"> REMOVE THIS
    <form id="searchform" action="http://www.laeconomista.com/" method="get" role="search">
        <div>
            <label class="screen-reader-text" for="s">Buscar por:</label>
            <input id="s" type="text" name="s" value="">
            <input id="searchsubmit" type="submit" value="Buscar">
        </div>
    </form>

Updated

Apparently it's because of a unclosed anchor in the ... see @daverandom's post!!

The problem is here:

<h1 id="logo"><a href="http://www.laeconomista.com/">La economista          </h1>

You forgot to close your link (there is no </a>) which means that the entire form is inside the link. So as soon as you click on the form, you are linked back to the same page.

Change the line to:

<h1 id="logo"><a href="http://www.laeconomista.com/">La economista</a></h1>

And it should fix the problem.