controlling width of fields on list pages

This public forum is for user-to-user discussions of PHPMaker. Note that this is not support forum.
Post Reply
juvat
User
Posts: 71

controlling width of fields on list pages

Post by juvat »

Since upgrading to 10.0.5, I see that things have changed a bit. I am unable to figure out how to control the width of each field. I think I came acrossed something in the forum that said that there are settings in the CSS or Bootstrap that control this now?

Can I get a little more info on how to do this?


danielc
User
Posts: 1601

Post by danielc »

Set width in Field Setup page (see Field Setup in the help file). Note that if the data cannot be wrapped or the table header (set as nowrap by default) is too wide, your width will be overridden.

In list page, if you want to control the width of all columns, you may consider to set in css (see HTML settings in help file about how to set your user style) :
div.ewTableHeaderBtn {
width: 100px;
white-space: normal;
}


Post Reply