Log in

View Full Version : Shows in IE, not FF


Brandon Sheley
02-08-2006, 07:44 AM
sorry if this is the wrong place to post this but i have a small issue and started going nuts untill i noticed it was still visible on IE

on this page

http://locoforum.com/forums/index.php

if your on IE you will see a modified " upcoming events" block that I moved above the forums..

if your on Firefox you don't see it at all :(

does anyone know how I can fix this ?

I will post the code I used if that helps..

<!----upcoming events - under navbar --->

<center>

<table class="tborder" border="0" width="100%" style="border-collapse: collapse">
<tr>
<td height="20" colspan="3" class="thead"><a href="http://locoforum.com/forums/forumdisplay.php?f=32"><b>Upcoming Events</b></a>
<if condition="$show['todaysevents']">$vbphrase[todays_events]<else /><phrase 1="$vboptions[showevents]">$vbphrase[upcoming_events_for_the_next_x_days]</phrase></if></td>
</tr>
<tr>

<tbody id="collapseobj_forumhome_events" style="$vbcollapse[collapseobj_forumhome_events]">
<tr>
<td class="alt2"><a href="calendar.php$session[sessionurl_q]">
<iframe marginwidth="0" marginheight="0" name="P1" width="70" height="100" scrolling="no" border="0" frameborder="0" src="/loco-posters/rotator.php"> This browser does not support inline frames.</iframe></td>
<td class="alt1" width="600"><div class="smallfont">$upcomingevents </div></td>

<td align="center" bgcolor="FFFFFF">

<!-- Search Google -->
removed my google code...
<!-- Search Google -->
</td>
</tr>
</table></center><br />
<!----upcoming events - under navbar --->

thank you
-Loco.m

Princeton
02-08-2006, 12:19 PM
Replace the comments...
SHOULD BE:
<!-- upcoming events - under navbar -->
NOT:
<!----upcoming events - under navbar --->

COMPLETE VALID XHTML CODE:
<!-- upcoming events - under navbar -->
<table class="tborder" border="0" width="100%" style="border-collapse: collapse" align="center">
<thead>
<tr>
<td colspan="3" class="thead"><a href="http://locoforum.com/forums/forumdisplay.php?f=32" title=""><strong>Upcoming Events</strong></a>
<if condition="$show['todaysevents']">$vbphrase[todays_events]
<else />
<phrase 1="$vboptions[showevents]">$vbphrase[upcoming_events_for_the_next_x_days]</phrase>
</if></td>
</tr>
</thead>
<tbody id="collapseobj_forumhome_events" style="$vbcollapse[collapseobj_forumhome_events]">
<tr>
<td class="alt2">
<iframe marginwidth="0" marginheight="0" name="P1" width="70" height="100" scrolling="no" frameborder="0" src="/loco-posters/rotator.php"> This browser does not support inline frames.</iframe></td>
<td class="alt1" width="600"><div class="smallfont">$upcomingevents </div></td>
<td align="center"><!-- Search Google -->
removed my google code...
<!-- Search Google -->
</td>
</tr>
</tbody>
</table>
<br />
<!-- upcoming events - under navbar -->

Brandon Sheley
02-18-2006, 04:05 AM
oh, thank you, I didn't know something like that would affect anything :p