View Single Post
  #3 (permalink)  
Old 04-29-2008, 02:44 AM
polyvios_s polyvios_s is offline
Newbie
 
Join Date: Apr 2008
Posts: 9
Credits: 0
Rep Power: 0
polyvios_s is on a distinguished road
Default Re: XHTML validation

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"

Last edited by polyvios_s; 04-29-2008 at 02:45 AM. Reason: I R the worlds worst typist
Reply With Quote