Didn't figure I could make this work but the downloads page is pretty much configured with the exception of
tr id being defined a couple of times more than it should.
Just erase
$rowId from lines 358 and 471 of ionfiles.php
Before - Line 358:
PHP Code:
print "<tr id=\"$rowId\"><td width=\"100%\" colspan=\"$colCount\" class=\"sectiontableheader\">";
Before - Line 471:
PHP Code:
print "<tr id=\"$rowId\"><td colspan=\"$colCount\"><br /></td></tr>";
After - Line 358:
PHP Code:
print "<tr><td width=\"100%\" colspan=\"$colCount\" class=\"sectiontableheader\">";
After - Line 471:
PHP Code:
print "<tr><td colspan=\"$colCount\"><br /></td></tr>";
Not sure if this is a proper fix or a workaround, not even sure if it will work for different setups than mine... but for me it validates through w3c

now if I can just figure out why I cant style "contentheading"
