By mixersoft on
Hi, I've got this teaser view that displays the following fields as a list, one on each line. I'm trying to make it more compact -- so that the 3 fields are displayed on just 1 single line. Can anyone tell me how to do this?
$view->field = array (
array (
'tablename' => 'node',
'field' => 'title',
'label' => '',
'handler' => 'views_handler_field_nodelink',
),
array (
'tablename' => 'node',
'field' => 'created',
'label' => '',
'handler' => 'views_handler_field_date_small',
),
array (
'tablename' => 'users',
'field' => 'name',
'label' => '',
),
);