tags:

views:

69

answers:

1

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?

+3  A: 

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.

Nick Craver
Thanks! worked a charm!
renegadeds
You should mark the answer as correct if so.
Francisc
@Dean - Be sure to mark answers to all of your solved questions as accepted to "close-out" the question and help the next guy, via the check-mark beside the answer that helped resolve the problem :)
Nick Craver