Try the <rich:column> headerClass , like this:
<rich:column headerClass="myWidth"> ... </rich:column>
Then in your CSS (inline or linked):
.myWidth {width:150px}
Perhaps you might have some kind of conflicting CSS property for white space, so you can specify the .myWidth selector as follows:
.myWidth {width:150px; white-space:normal!important}
Pattmauler
source share