PDA


View Full Version : News Archive - Recent Threads


DementedMindz
05-20-2007, 10:32 PM
would be nice to see all the tables line up correctly on News Archive - Recent Threads. they do look perfect in internet explorer but go to firefox and you will see that the Replies - Views in Recent Threads dont line up with News Archive Replies - Views. If you need to see a screen shot i would be glad to provide one.

Brian
05-21-2007, 09:26 AM
Yes, a screen shot or link to the page would be helpful.

DementedMindz
05-21-2007, 03:02 PM
Yes, a screen shot or link to the page would be helpful.

ok like I said in internet explorer it looks fine but in firefox its off here is a screen shot of what im talking about looks at views and replys on both sections.

3348

Brian
05-21-2007, 04:14 PM
I'm not really sure why they're lined up like that. Seems to be working fine for me locally. If you'd like to post the link so I can view the source and such though I'll be glad to take a look.

DementedMindz
05-22-2007, 12:26 PM
well from looking at the html on the source and from looking at the html code you have different things for each.

for example in the one you have

adv_portal_archivebits_exp_head
<tr>
<if condition="$mod_options['portal_archive_showicon']">
<td class="thead" width="15">&nbsp;</td>
</if>
<td class="thead" width="100%">$vbphrase[title_username_date]</td>
<if condition="$show['lastpost']">
<td align="center" class="thead" style="white-space: nowrap" width="25%">$vbphrase[last_post]</td>
</if>
<if condition="$mod_options['portal_archive_showreplies']">
<td class="thead" width="15">$vbphrase[replies]</td>
</if>
<if condition="$mod_options['portal_archive_showviews']">
<td class="thead" width="15">$vbphrase[views]</td>
</if>
<if condition="$mod_options['portal_newsarchive_showforum']">
<td align="center" class="thead" width="10%">$vbphrase[forum]</td>
</if>
</tr>

and in this one you can see the width and stuff are different.

adv_portal_recthreads_exp_head

<tr>
<if condition="$mod_options['portal_threads_showicon']">
<td class="thead" width="2%">&nbsp;</td>
</if>
<td class="thead" width="50%"><if condition="$mod_options['portal_threads_showrating']"><span style="float:$stylevar[right]">$vbphrase[rating]</span></if>$vbphrase[title_username_date]</td>
<if condition="$mod_options['portal_threads_lastpost']">
<td align="center" class="thead" style="white-space: nowrap" width="25%">$vbphrase[last_post]</td>
</if>
<if condition="$mod_options['portal_threads_replies']">
<td class="thead" width="2%">$vbphrase[replies]</td>
</if>
<if condition="$mod_options['portal_threads_views']">
<td class="thead" width="2%">$vbphrase[views]</td>
</if>
<if condition="$mod_options['portal_threads_showforum']">
<td align="center" class="thead" width="20%">$vbphrase[forum]</td>
</if>
</tr>

so surely on internet explorer there going to look fine but on firefox there off as you can see from the image above