Casuzen
Casuzen

Reputation: 169

ColdFusion 8 CFGRID - Headers not aligned with columns

CF8 - I have a CFGRID of type HTML where there are 5 data columns and the headers progressively are off from the data column..the first one lines up, the second one is off by about 2 px to the left of the data, the third one is off by about 4 px, the fifth one is off by about 6 px...cannot get the headers to sit exactly over the columns..if I pull the size of the column, the header still stays offset.

any ideas on why the column headers are offset?? I was thinking it might be css related but cannot find anything that looks like it might be affecting it..

Upvotes: 1

Views: 1032

Answers (2)

Tobias
Tobias

Reputation: 11

CF 10: c:/Coldfusion10/cfusion/wwwroot/cfide/scripts/ajax/resources/ext/css/ext-all.css

CF 9: d:/wwwroot/cfide/script/ajax/resources/ext/css/ext-all.css

This had to be commented out:

.x-grid3 table {
   table-layout:fixed;
}

Upvotes: 1

zarko.susnjar
zarko.susnjar

Reputation: 2053

Install Firebug Addon to Firefox. Activate it, point to headers text, look at css properties, probably it's padding or margin in file different than CFIDE/scripts/ajax/resources/ext/css/ext-all.css .

Upvotes: 0

Related Questions