Custom fields display desktop - mobile

Seeker-Smith

Well-known member
When viewing any custom fields on mobile the data to pushed to the the next line. If this can can fixed with a tweak (instructions) please let me know.

Desktop view.
Screen Shot 2025-08-27 at 3.06.21 PM.webp

Mobile view.
IMG_0193.webp
 
Last edited:
This is as-designed for our pairs styling. You could customize the field's wrapper display HTML to justified, for example, or make other adjustments via extra.less:

HTML:
<dl class="pairs pairs--justified pairs--customField" data-field="{$fieldId}">
    <dt>{$title}</dt>
    <dd>{$value}</dd>
</dl>
 
Back
Top Bottom