I also solved the button disappearing from a tip on an older thread about the issue, removing the style for input:focus:
IN STYLESHEET.CSS CHANGE:
input:focus, select:focus, textarea:focus {
background: #F0F8FF;
}
TO:
select:focus, textarea:focus {
background: #F0F8FF;
}


Reply With Quote
