Wordpress search bar resets after input

So I have this site here. When I go to type something into the search bar on the upper right area, it resets itself thus preventing me from completing a search query. Anybody know why? I’ve upgraded to the latest version of WP.

Your HTML is screwed up. You are not closing your anchor tags. The result is that your search box is actually a link and when it is clicked you are directed to the link. Here is a little section of your HTML:

<ul>
           <li><a href="http://www.datingseniormen.com/tag/military-milo/">Military Milo</li>
           <li><a href="http://www.datingseniormen.com/tag/figaro/">Figaro</li>
           <li><a href="http://www.datingseniormen.com/tag/firefly/">Firefly</li>
           <li><a href="http://www.datingseniormen.com/tag/pasha/">Pasha</li>
           <li><a href="http://www.datingseniormen.com/tag/stunt-man/">Stunt Man</li>
           <li><a href="http://www.datingseniormen.com/tag/web-stalker/">Web Stalker</li>
           <li><a href="http://www.datingseniormen.com/tag/dr-shrink/">Dr Shrink</li>
           <li><a href="http://www.datingseniormen.com/tag/stargazer/">Stargazer</li>
           <li><a href="http://www.datingseniormen.com/tag/lust-for-brains/">Lust For Brains</li>
           <li><a href="http://www.datingseniormen.com/tag/harvard-yard/">Harvard Yard</li>
           <li><a href="http://www.datingseniormen.com/tag/tv-idol/">TV Idol</li>
           <li><a href="http://www.datingseniormen.com/tag/past-perfect/">Past Perfect</li>
</ul>

Your anchor tags are not closed. It should be like this:


<li><a href="http://www.datingseniormen.com/tag/military-milo/">Military Milo[COLOR="#00FF00"]</a>[/COLOR]</li>

Close your anchor tags (all of them) in your template files and try again. Also, validate your HTML using the W3 Validator. That will help you find errors. You’ve got quite a few errors such as unclosed anchor tags.

The Validator is a key tool for any web designer. It would have found these errors for you. :slight_smile: