I have 2 currency fields, single and monthly transaction limit. When I apply below CSS to show side by side, the dollar sign appears separately. How do I get dollar sign to be in same line as text box? See screen shot attached.
li.monthlytranslimit {
float: left;
width: 30% !important;
}
li.monthlytranslimit div.cf-page{
float: left;
width: 100% !important;
}
li.monthlytranslimit label.cf-page{
float: left;
width: 100% !important;
}
li.monthlytranslimit input{
float: left;
width: 100% !important;
}
li.singletranslimit {
float: left;
width: 30% !important;
}
li.singletranslimit div.cf-page{
float: left;
width: 100% !important;
}
li.singletranslimit label.cf-page{
float: left;
width: 100% !important;
}
li.singletranslimit input{
float: left;
width: 100% !important;
}
Thanks
Priya