When radio button is selected and successfully updated in the post, 'Success' appears below the radio button, I would like it to appear directly to the right of the radio.
I've tried creating a DIV with 100% and then 2 divs inside that 10% & 90%
<div style="width:100%">
<div style="width:10%"> <input type='radio' name="_chkBox" checked="checked" onclick='$("#clientId").val("@client.Id");'/> </div>
<div style="width:90%"> <p style="color:Green;">Success</p> </div>
</div>