Hello @BradyDar ,
Step 1: Use "Text Entry" -> "Form" with form field count as "2" question setup.
Step 2: Paste the following code in the js(OnReady) of the Text entry question type
var that = this.questionId;
jQuery("#"+that+" .ControlContainer").css("white-space","nowrap");
jQuery("<span>$</span>").insertBefore(jQuery("#"+that+" .InputText:eq(0)"));
jQuery("#"+that+" .InputText:eq(1)").insertAfter(jQuery("#"+that+" .InputText:eq(0)"));
jQuery("<b>.</b>").insertAfter(jQuery("#"+that+" .InputText:eq(0)"));
jQuery("#"+that+" .ReadableAlt").hide();
Step 3: Output
!