Single Category View on Web, columns and headings don't line up

I have an application where I use a single category view embedded on a form on the Web. Since upgrading to release 7.0.3 the column headings do not line up with the data. It almost seems like it is allocating a small space in the heading line for the first sorted column used for the single category selection. This field does not display in the view because it is used for the selection only.

I searched around and do not find any other reports of this. Does anyone know what’s going on here?

Thanks,

Mike

Subject: Single Category View on Web, columns and headings don’t line up

If the last version you worked with was R5, the difference is that column headers are now TH elements rather than TD elements. By default, these are bold and centred in the column, but you can easily override that with CSS.

Subject: RE: Single Category View on Web, columns and headings don’t line up

The last version where it was working was 6.5.4.

Subject: RE: Single Category View on Web, columns and headings don’t line up

Doesn’t matter, really – CSS is still the answer:

TH {text-align: left;;}