Hi,
If you are trying to use template fields you can try this code
<div class="row s_col_no_resize s_col_no_bgcolor">
<label class="col-form-label col-sm-auto s_website_form_label"
style="width: 200px"
for="custom_field1">
<span class="s_website_form_label_content">
Identification No
</span>
<span class="s_website_form_mark"
style="color:red;">*
</span>
</label>
<div class="col-sm">
<input id="custom_field1" type="text"
class="form-control s_website_form_input my_style"
name="identification"
required=""/>
</div>
</div>
This is an example of adding a field, applying styles based on
class, and adding a CSS file, and you can apply styles for IDs and
classes.
.my_style { height: 200px; /* Add any other desired styles here */ } |
Hope it helps