Perhaps someone can need this or Bernard take a look at this..... I don't know it is relevant but i used 3 colums on frontpage and 2 in section- categorylisting.
After this changes i passed validation with SGML Parser at W3C.org and also with HTML Tidy
File alphacontent.html.php
| Code: |
removed line 619: <tr>
removed line 103: <input type="text" name="searchfilter" class="inputbox" value="<?php echo _ALPHACONTENT_SEARCH ?>" onFocus="this.value='';">
with
<input type="text" name="searchfilter" class="inputbox" value="<?php echo _ALPHACONTENT_SEARCH ?>" onfocus="this.value='';"/>
removed line 606: echo "\n<hr size=\"1\" noshade>\n";
with
echo "\n<hr size=\"1\" noshade=\"noshade\" />\n";
removed all: onClick
with
onclick
removed all: onChange
with
onchange
removed all: onFocus
with
onfocus
|
File alphacontent.layout.php
| Code: |
removed: <div id="title">
with
<div class="title">
removed: <div id="features">
with
<div class="features">
|
File alphacontent.class.php
| Code: |
removed: if ( $colspan>0 ) echo "<td valign=\"top\" colspan=\"$colspan\"> </td>";
with
if ( $colspan>0 ) echo "<td valign=\"top\" colspan=\"$colspan\"> </td></tr>";
|