How to change record view to show two fields in a row instead of three?

I am using SugarCRM 7.2. Currently in record view, three fields are showing in a row. I need to re-arrange the view so that in some rows I need only two fields. How could I achieve this?
Parents Reply
  • Thanks for your suggestion. I solved the issue by using 'span' as below.

    'fields' => array(
                         array(
                              'name' => 'field1',              
                              'span' => 6,
                        ),
                       array(
                             'name' => 'field2',
                             'span' => 6,
                     ),
    )

    This is for the 2 column rows.
Children