PDA

View Full Version : site doesnt render properly in Opera



another_geek
08-28-2005, 10:38 PM
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.

AutopiaAdmin
08-28-2005, 10:54 PM
We will try to get this fixed this week.

another_geek
08-29-2005, 12:23 AM
We will try to get this fixed this week.

Great! thanks for the quick response

The Chee
08-29-2005, 12:37 AM
yay, no more wideeeeee pages when viewing DC with opera browser :phone2:

another_geek
08-29-2005, 08:14 PM
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&amp;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&amp;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...

another_geek
08-29-2005, 09:31 PM
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&amp;u=4607" onclick="return log_out()">Log Out</td></tr></table>