Hi,
In the previous versions of this plugin, the “Number” fields were using an input tag with the attribute type=”text”. In the latest versions of the plugin we have modified the “Number” fields to use the type=”number”. This change is very important in mobiles devices, to display directly the numeric keyboard.
I’ve checked your website. You have redefined the profesional layout of the plugin in the CSS file of the active theme (https://elc-13a1.kxcdn.com/wp-content/themes/motif/style.css), so, you simply should edit this file, specifically the snippet of code:
.cp_cff_professional #fbuilder select, .cp_cff_professional #fbuilder textarea, .cp_cff_professional #fbuilder input[type="text"], .cp_cff_professional #fbuilder input[type="file"] {
background: none repeat scroll 0 0 #f6f4e8 !important;
border: 1px solid #2a697a !important;
border-radius: 5px !important;
box-shadow: none !important;
box-sizing: border-box !important;
margin: 0 !important;
outline: medium none !important;
vertical-align: middle !important;
padding: 2px;
color: #575757 !important;
}
like follow:
.cp_cff_professional #fbuilder select, .cp_cff_professional #fbuilder textarea, .cp_cff_professional #fbuilder input[type="text"], .cp_cff_professional #fbuilder input[type="number"], .cp_cff_professional #fbuilder input[type="file"] {
background: none repeat scroll 0 0 #f6f4e8 !important;
border: 1px solid #2a697a !important;
border-radius: 5px !important;
box-shadow: none !important;
box-sizing: border-box !important;
margin: 0 !important;
outline: medium none !important;
vertical-align: middle !important;
padding: 2px;
color: #575757 !important;
}
I’ve included the elements:
.cp_cff_professional #fbuilder input[type="number"]
In the previous definition.
Please, remember to clear the browser’s cache after edit the CSS files.
Best regards.