renegadeds
renegadeds

Reputation: 99

Weird problem: Submit button not showing up in IE8

On this site: http://tinyurl.com/2allkcs

The submit button for the login form doesn't seem to show up in IE8, however in Firefox it all works just fine.

Any ideas as to why?

Upvotes: 1

Views: 1590

Answers (1)

Nick Craver
Nick Craver

Reputation: 630349

Your closing </div> tag's a little weird, causing problems in chrome as well:

<div class="kun-inp-cont"> 
  <input type="password" name="pwd" id="lwa_user_pass" class="kun-inp" value="" /> 
</div
     ><input type="submit" name="wp-submit" id="lwa_wp-submit" class="kun-sub" value=" " /> 

Get rid of that extra return that slipped into </div.....> and it'll render correctly, currently the browser is discarding that following <input /> element.

Upvotes: 3

Related Questions