Custom Fields on same line / row

Is it possible have two custom fields displayed on the same line?
Not when editing the form but only after creation.
e.g.

Date (drop down field) | Time (number field)

Yes, but the technique depends on what kind of custom field you are referring to: one for a transaction, one for an item, one for a line, etc. What is your exact use case?

See image below and two custom fields in Red rectangle.
Date of Contact is ‘Date Picker’
Time of Contact is ‘Text Field’
All the custom fields are displayed using code in a custom theme. (Sales Order)
i.e.
{% if field.label == “Customer Contacted” %}{{ field.label }}: {{ field.text}}{% endif %}
{% if field.label == “Date of Contact” %}{{ field.label }}: {{ field.text}}{% endif %}
{% if field.label == “Time of Contact” %}{{ field.label }}: {{ field.text}}{% endif %}
{% if field.label == “Contact Notes” %}{{ field.label }}: {{ field.text}}{% endif %}

Sorry, should have added what I want as opposed to what I have currently.

Customer Contacted: Successful
Date of Contact: 21/07/2021 | Time of Contact: 12.24
Contact Notes: Customer said to ‘Bin it’

The custom fields are displayed by a loop. You need to introduce into your custom theme code to detect when you have displayed the Date of Contact field and bypass the code that skips to the next line. Otherwise, let the loop execute.

Many thanks, now displays as I wanted it to :+1:.