Now it"s all bedded in for a few weeks, I think that it"s working quite nicely - well done.
But ...
When I look at my private messages,the zebra-style summary at the top is all wrong (Firefox 12.0, but other browsers will be affected) I"ve attached a screenshot. This may not be a new problem - I"ve forgotten when I last saw it working properly (if it ever has) so it may not be related to the new server.
It"s being caused by the style rule at line 224 of
http://www.apat.com/forum/Themes/theme1/style.css?fin11 which includes "display: table-cell", which is being applied to the tr element - which needs to be display:table-row. Thus it doesn"t work as the page author hoped (because you cannot nest table cells*)
The fix is either 1) delete that property because it"s not necessary, but this may be unsafe, as it depends on what else might be using the "windowbg" class on the site; or 2) add a new style rule just under that one that does: tr.windowbg { display: table-row } This should be a lot safer, as it almost certainly won"t break anything else - and would save me having to correct it in Firebug every time I read my PMs!
- The short version of why this happens is that you end up with all real cells in that row being put inside an anonymous table which fills one real cell (the "tr"), thus the entire "row" is squashed into the left most column of the main table. The long version is complicated and available only on demand and when I"m not tired.