site doesnt render properly in Opera

another_geek

New member
In both the "new" version of DC and in the "old" site, the box containing the links to "New Posts, Search, Quick Links, etc" doesn't render properly in Opera. Works fine in IE and Firefox though.

Any chance of fixing this? I think this is about the only site I have come across so far that doesn't render properly in Opera and that I have to switch to IE or Firefox to view properly.
 
Dwayne,


if it helps, I took a look at the HTML code being generated, and I think I have found the line causing the error.

In the code that generates the "Log Out" link, the code looks like this ...

<td class="vbmenu_control"><a href="http://www.detailcity.com/forums/login.php?do=logout&u=4607" onclick="return log_out()">Log Out</tr>


and I believe it should look like this

<td class="vbmenu_control"><a href="http://www.detailcity.com/forums/login.php?do=logout&u=4607" onclick="return log_out()">Log Out</td>

Note the typo that I have bolded above. Basically, you are starting a table cell with the <td> tag, but try to close a non-existing table row with the </tr> tag instead.

Hope this helps...
 
I took a closer look at the code, and actually, the correct code should look like this


<td class="vbmenu_control"><a href="http://www.detailcity.com/forums/login.php?do=logout&u=4607" onclick="return log_out()">Log Out</td></tr></table>
 
Back
Top