Re: Column Width of Block

2005-09-16 Thread Tomáš Drenčák
You can use colgroup html tag and also col tag. It defines column groups in table they widths, groups... Look at http://www.w3.org/TR/REC-html40/struct/tables.html#edef-colgroup ... 2005/9/15, Dan Adams <[EMAIL PROTECTED]>: > have you tried styling the column with a css class? like if you have

Re: Column Width of Block

2005-09-15 Thread Dan Adams
have you tried styling the column with a css class? like if you have a column name 'person' I think class comes out as 'personColumnValue' (check the html source to be sure) then you can just do something like this is a stylesheet: td.personColumnValue { width: 40px; } hope this helps. On Thu,