solver80 Posted January 2, 2016 Share Posted January 2, 2016 My WHMCS website template using bootstrap as framework but some <input> fields are hidden within the code and not sure where exactly I would need to add class="form-control" to make them look same. Two of <input> which I'm not sure how to change are on "Domain Configuration" (this is second step when you buying new domain). here is source code: {foreach from=$domain.fields key=domainfieldname item=domainfield} <div class="row"> <div class="col-sm-4">{$domainfieldname}:</div> <div class="col-sm-8">{$domainfield}</div> </div> {/foreach} And source code from browser: <div class="row"> <div class="col-sm-4">Legal Type:</div> <div class="col-sm-8"><select name="domainfield[0][0]" class="form-control select-inline"><option value="Individual" selected="selected">Individual</option><option value="UK Limited Company">UK Limited Company</option></select></div> </div> <div class="row"> <div class="col-sm-4">Company ID Number:</div> <div class="col-sm-8"><input type="text" name="domainfield[0][1]" value="" size="30" /></div> </div> <div class="row"> <div class="col-sm-4">Registrant Name:</div> <div class="col-sm-8"><input type="text" name="domainfield[0][2]" value="" size="30" /> *</div> </div> Not sure how this is possible that form <select> already come with form-control but other inputs don't. 0 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.