- Edited
Hi thereHas someone modded or can someone assist me in modding the custom data font size on ticket print?Check my attached picture, underneath "Jobcard details", i would like to make that font/table smaller Essentially i would like to make the items on the below code appear smaller:<!-- Custom Data --><?phpforeach (DynamicFormEntry:($ticket->getId()) as $form) { // Skip core fields shown earlier in the ticket view $answers = $form->getAnswers()->exclude(Q:(array( 'field__flags__hasbit' => DynamicFormField:, 'field__name__in' => array('subject', 'priority') ))); if (count($answers) == 0) continue; ?> <table class="custom-data" cellspacing="0" cellpadding="4" width="100%" border="0"> <tr><td colspan="2" class="headline flush-left"><?php echo $form->getTitle(); ?></th></tr> <?php foreach($answers as $a) { if (!($v = $a->display())) continue; ?> <tr> <th><?php echo $a->getField()->get('label'); ?>:</th> <td><?php echo $v; ?></td> </tr> <?php } ?> </table> <?php $idx++;} ?>Kind RegardsNoobie