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?
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?
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.