This topic is locked
[SOLVED]

 Resize table in Add page

6/18/2012 7:37:32 PM
PHPRunner General questions
D
dodgebros author

I would like to have the fields closer together vertically on my Add page. I tried resizing the table by dragging it but it only shrinks so much. I looked at the table's properties but did not see anything that would cause this.
How can I shrink this table to have the fields closer together?
Thanks,

TD

D
dodgebros author 6/19/2012

Any body?

J
Jane 6/20/2012

Hi,
unfortunately there is no easy way to change height of the rows by dragging and dropping borders on the Visual Editor tab.

As workaround you can turn on Show borders mode on the Visual Editor tab, put cursor to each cell, switch toHTML mode, find corresponding DIV tag and add height parameters here:

<DIV class="fieldlabel_FieldName {$fielddispclass_FieldName}" style="height:10px">
D
dodgebros author 6/20/2012



Hi,
unfortunately there is no easy way to change height of the rows by dragging and dropping borders on the Visual Editor tab.

As workaround you can turn on Show borders mode on the Visual Editor tab, put cursor to each cell, switch toHTML mode, find corresponding DIV tag and add height parameters here:

<DIV class="fieldlabel_FieldName {$fielddispclass_FieldName}" style="height:10px">



Thanks Jane!!!