View Full Version : navbar annoyance
Chadi
04-03-2006, 02:15 PM
Forumhome : the navigational links below the quote of the day box: (see attached "good" file)
This is fine. Notice it is vertically centered. Now, the below ("bad" file) (example of any place you go but forumhome) shows it this way (notice the extra break)
That portion code from navbar is this:
<div align="center">
<table border="0" width="99%" id="table2" cellspacing="0" cellpadding="0">
<tr>
<td class="alt5" colspan="3" style="border-top:1px solid #FFFFFF; border-left:1px solid #FFFFFF; border-right:1px solid #FFFFFF; " height="5">
</td>
</tr>
<tr>
<td class="alt1" align="left" style="border-left:1px solid #E1E4F2; border-top:1px solid #E1E4F2; border-bottom:1px solid #E1E4F2; ">
<if condition="is_array($navbits)">
<table cellpadding="0" cellspacing="0" border="0" id="table3">
<tr valign="bottom">
<td> <a href="#" onclick="history.back(1)"><img src="$stylevar[imgdir_misc]/navbits_start.gif" alt="$vbphrase[go_back]" border="0" /></a></td>
<td> </td>
<td width="100%" height="25"><span class="navbar">
<a href="$vboptions[forumhome].php?$session[sessionurl]" accesskey="1">
$vboptions[bbtitle]</a></span> $navbits[breadcrumb]</td>
</tr>
<tr>
<td class="navbar" style="font-size:10pt; padding-top:1px" colspan="3">
<a href="$scriptpath"><img class="inlineimg" src="$stylevar[imgdir_misc]/navbits_finallink.gif" alt="$vbphrase[reload_this_page]" border="0" /></a>
<strong>$navbits[lastelement]</strong></td>
</tr>
</table>
<else />
<div class="navbar" style="font-size:10pt">
<a href="$vboptions[forumhome].php?$session[sessionurl]" accesskey="1"><img class="inlineimg" src="$stylevar[imgdir_misc]/navbits_start.gif" alt="" border="0" /></a>
<strong>$vboptions[bbtitle]</strong></div></if>
</td>
<if condition="$bbuserinfo['userid']">
<td id="navbar_search" height="35" width="105" bgcolor="#F5F5FF" style="border-left:1px solid #FFFFFF; border-top:1px solid #E1E4F2; border-bottom:1px solid #E1E4F2; "><b>
<a href="search.php$session[sessionurl_q]" accesskey="4" rel="nofollow" style="text-decoration: none">
<img src="http://talkjesus.com/images/search2.gif" border="0"></a></b> <script type="text/javascript"> vbmenu_register("navbar_search"); </script></td>
<td id="navbar_search" height="35" bgcolor="#F5F5FF" width="25" style="border-right: 1px solid #E1E4F2; border-top: 1px solid #E1E4F2; border-bottom: 1px solid #E1E4F2; ">
<div class="smallfont">
<a href="login.php?$session[sessionurl]do=logout&logouthash=$bbuserinfo[logouthash]" onclick="return log_out()" style="text-decoration: none; font-weight:700">
<center>
<img border="0" src="http://talkjesus.com/images/menu/exit.gif" width="16" height="16" alt="Logout"></a></div></center>
</td></if>
</tr>
</table>
</div>
<div align="center">
<table border="0" width="99%" id="table4" cellpadding="0" cellspacing="0">
<tr>
<td align="center" height="5">
</td>
</tr>
</table>
</div>
<!-- / breadcrumb, login, pm info -->
How do I fix this extra line break appearance?
evenmonkeys
04-03-2006, 06:10 PM
As long as you haven't made any changes to your navbar since you made this post, you can replace it with this:
<div align="center">
<table border="0" width="99%" id="table2" cellspacing="0" cellpadding="0">
<tr>
<td class="alt5" colspan="3" style="border-top:1px solid #FFFFFF; border-left:1px solid #FFFFFF; border-right:1px solid #FFFFFF; " height="5">
</td>
</tr>
<tr>
<td class="alt1" align="left" style="border-left:1px solid #E1E4F2; border-top:1px solid #E1E4F2; border-bottom:1px solid #E1E4F2; ">
<if condition="is_array($navbits)">
<table cellpadding="0" cellspacing="0" border="0" id="table3">
<tr>
<td> <a href="#" onclick="history.back(1)"><img src="$stylevar[imgdir_misc]/navbits_start.gif" alt="$vbphrase[go_back]" border="0" /></a></td>
<td> </td>
<td width="100%"><span class="navbar">
<a href="$vboptions[forumhome].php?$session[sessionurl]" accesskey="1">
$vboptions[bbtitle]</a></span> $navbits[breadcrumb]</td>
</tr>
<tr>
<td class="navbar" style="font-size:10pt; padding-top:1px" colspan="3">
<a href="$scriptpath"><img class="inlineimg" src="$stylevar[imgdir_misc]/navbits_finallink.gif" alt="$vbphrase[reload_this_page]" border="0" /></a>
<strong>$navbits[lastelement]</strong></td>
</tr>
</table>
<else />
<div class="navbar" style="font-size:10pt">
<a href="$vboptions[forumhome].php?$session[sessionurl]" accesskey="1"><img class="inlineimg" src="$stylevar[imgdir_misc]/navbits_start.gif" alt="" border="0" /></a>
<strong>$vboptions[bbtitle]</strong></div></if>
</td>
<if condition="$bbuserinfo['userid']">
<td id="navbar_search" height="35" width="105" bgcolor="#F5F5FF" style="border-left:1px solid #FFFFFF; border-top:1px solid #E1E4F2; border-bottom:1px solid #E1E4F2; "><b>
<a href="search.php$session[sessionurl_q]" accesskey="4" rel="nofollow" style="text-decoration: none">
<img src="http://talkjesus.com/images/search2.gif" border="0"></a></b> <script type="text/javascript"> vbmenu_register("navbar_search"); </script></td>
<td id="navbar_search" height="35" bgcolor="#F5F5FF" width="25" style="border-right: 1px solid #E1E4F2; border-top: 1px solid #E1E4F2; border-bottom: 1px solid #E1E4F2; ">
<div class="smallfont">
<a href="login.php?$session[sessionurl]do=logout&logouthash=$bbuserinfo[logouthash]" onclick="return log_out()" style="text-decoration: none; font-weight:700">
<center>
<img border="0" src="http://talkjesus.com/images/menu/exit.gif" width="16" height="16" alt="Logout"></a></div></center>
</td></if>
</tr>
</table>
</div>
<div align="center">
<table border="0" width="99%" id="table4" cellpadding="0" cellspacing="0">
<tr>
<td align="center" height="5">
</td>
</tr>
</table>
</div>
<!-- / breadcrumb, login, pm info -->Basically, I took out the first instance of a <tr valign="bottom"> and an instance where the bottom row with the thread name was specifying instelf to be 25 pixels tall.
Chadi
04-03-2006, 08:14 PM
Hate to say it, but your method wiped out the first half of my navbar
Freesteyelz
04-03-2006, 10:49 PM
In your second screenshot, are you trying to vertically-align it centered?
evenmonkeys
04-03-2006, 11:01 PM
Ohhh. You were only showing one part of your navigation bar? I must have read that wrong. I am so sorry. In any case, is the alignment better? =D
Chadi
04-03-2006, 11:29 PM
I want it vertically centered, remaing left aligned horizontally.
I posted the entire navbar for you originally
evenmonkeys
04-03-2006, 11:41 PM
That's what I did. O_o This is a screenshot of what that navbar that I gave you looks like for me in comparison to yours now.
Freesteyelz
04-03-2006, 11:50 PM
Well, the natural behavior of row vertical-aligns itself centered. Yarub had the right edit. You may have removed:
<tr valign="bottom">
When it should have been
<tr>
evenmonkeys
04-03-2006, 11:53 PM
Truthfully, I don't like the way it's designed. They're using two seperate rows for the beginning of the bits and the end of the bits (the location you're viewing). Makes things more complicating. =P
Freesteyelz
04-03-2006, 11:56 PM
I agree and that's why I re-designed mine. I also didn't like the fact that the forum title showed when there was no reason for it to exist. So I swapped it with a introductory text and only when a user clicks on a subsequent page the breadcrumb links show up.
evenmonkeys
04-03-2006, 11:58 PM
Yeah. That's probably the most annoying part. I removed that as well. Since I labeled the main forums after the name of my site, it looked weird. Haha.
section02 > section02 > Announcements
No thanks. =P
Freesteyelz
04-04-2006, 12:01 AM
Yup...It was rather redundant on the original design but I'm sure they had their reasons.
This is what shows on Forum Home:
Conceptualized In The Summer Of 2000. What We Do Is Not Just A Game To Us...It's A Way Of Life.
And in ShowThread
bac-Community Forum > What's The 411? > Announcements > Thread title here...
:)
evenmonkeys
04-04-2006, 12:06 AM
Oh that's nice. =D
Freesteyelz
04-04-2006, 12:13 AM
Thanks, vbphrased too. Nothing fancy, just practical. :)
Chadi
04-04-2006, 01:24 AM
Well, the natural behavior of row vertical-aligns itself centered. Yarub had the right edit. You may have removed:
<tr valign="bottom">
When it should have been
<tr>
Ok, I kept my original code and simply changed that line with "Bottom' to <tr>. It is still bottom aligned for some reason.
I also tried Yarubs code again. This time it did not remove the portion of my navbar (it was my code replacement mistake before) but it is still bottom aligned again
Freesteyelz
04-04-2006, 01:33 AM
If you've edited the original navbar template the behavior of the above edits may not work as intended. Try replacing:
<td class="alt1" align="left" style="border-left:1px solid #E1E4F2; border-top:1px solid #E1E4F2; border-bottom:1px solid #E1E4F2; ">
With
<td class="alt1" align="left" style="vertical-align:center;border-left:1px solid #E1E4F2; border-top:1px solid #E1E4F2; border-bottom:1px solid #E1E4F2; ">
Chadi
04-04-2006, 01:37 AM
I tried it with my original again, still the same
This is the ENTIRE navbar
<script type="text/javascript">
<!--
function log_out()
{
ht = document.getElementsByTagName("html");
ht[0].style.filter = "progid:DXImageTransform.Microsoft.BasicImage(grays cale=1)";
if (confirm('$vbphrase[sure_you_want_to_log_out]'))
{
return true;
}
else
{
ht[0].style.filter = "";
return false;
}
}
//-->
</script>
<br />
<!-- breadcrumb, login, pm info -->
<div align="center">
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="0" border="0" width="99%">
</thead>
<tbody id="collapseobj_navbar" style="$vbcollapse[collapseobj_navbar]">
<tr><if condition="$bbuserinfo['userid']">
<td class="alt1" width ="1%" align="left" style="border-left:1px solid #E1E4F2; border-top:1px solid #E1E4F2; border-bottom:1px solid #E1E4F2; border-right-width:1px">$nav_av_image
</td></if><if condition="$bbuserinfo['userid']">
<td class="alt1" width="100%" style="border-top:1px solid #E1E4F2; border-bottom:1px solid #E1E4F2; border-left-width:1px; border-right-width:1px">
<p align="center">
<else />
</p>
</if>
<if condition="is_array($navbits)">
<else />
</if>
<if condition="$bbuserinfo['userid']">
<div align="center">
<table width="" border="0" bgcolor="" cellspacing="0" cellpadding="4"><tr><td>
<p align="center"><font color="#FF9900" size="7">{</font></td><td>
<font face="Arial, Helvetica, sans-serif" >
<div align="center"><b><font color="#FF9900">Today's Quote</font></b></div>
<script src="http://www.heartlight.org/hls/qm.js">
</script></font></td><td>
<p align="center"><font size="7" color="#FF9900">}</font></td></tr></table>
</div>
<!-- End HL Code - http://www.heartlight.org -->
<td class="alt1" valign="middle" nowrap="nowrap" align="left" style="border-top:1px solid #E1E4F2; border-bottom:1px solid #E1E4F2; padding-left: 5px; padding-right: 5px; border-left-width:1px; border-right-width:1px">
<div class="smallfont"><font color="#FF9900">
<strong style="font-weight: 400">
<phrase 1="$bbuserinfo[username]">$vbphrase[welcome_x]<br>
<br>
</phrase></strong></font>
<b>$vbphrase[members]: <font color="#FF9900">$numbermembers</font></b><phrase 1="$bbuserinfo[username]"></phrase><br />
Users Online: $totalonline<br><br />
<a href="search.php?do=getnew">New Threads</a>: $nav_new_threads<br />
<a href="search.php?do=getnew">New Posts</a>: $nav_new_posts</div></td>
<if condition="$bbuserinfo['pmunread'] and $permissions['pmquota'] > 0">
<td style="border-top:1px solid #E1E4F2; border-bottom:1px solid #E1E4F2; border-right:1px solid #FFFFFF; background-repeat: no-repeat; border-left-width:1px; padding-left:5px; padding-right:5px" class="alt1" align="left" width="5">
<else />
<td class="alt1" align="left" style="border-top:1px solid #E1E4F2; border-bottom:1px solid #E1E4F2; border-left-width: 1px; border-right: 1px solid #E1E4F2; padding-left:5px; padding-right:5px">
</if>
<div class="smallfont"><if condition="$show['pmstats']">
<div align="center" class="smallfont">
<table cellpadding="0" cellspacing="1" border="0" width="75%">
<tr align="center">
<td colspan="3" nowrap="nowrap">
<div class="smallfont">
<a href="$vboptions[bburl]/private.php">Private Messages</a><br>
<br />
$vbphrase[unread_x_nav_compiled]
<b><font color="#FF9900">:</font></b> $vbphrase[total_x_nav_compiled]<br>
<br>
Mailbox Meter<br></div></td>
</tr>
<tr><if condition="$pm_show['allfolderstotal']">
<td width="$pm_tdwidth[total]" style="border:1px solid #CCCCCC; background-color:#FF9900; font-size:10px" title="<phrase 1="$bbuserinfo[pmtotal]">$vbphrase[total_messages_in_all_folders_x]</phrase>"> </td>
</if><if condition="$pm_tdwidth[quota] > 0">
<td width="$pm_tdwidth[quota]" style="border:1px solid #CCCCCC; background-color:#e1e4f2; font-size:10px" title="<phrase 1="$permissions[pmquota]">$vbphrase[maximum_allowed_messages_x]</phrase>"> </td>
</if>
</tr>
</table>
</div></if></div></td>
<else /><if condition="$show['guest']">
<!-- guest welcome message -->
<td class="alt1" valign="middle" width="100%" align="left" style="border-top:1px solid #E1E4F2; border-bottom:1px solid #E1E4F2; border-left-width:1px; border-right-width:1px">
<div align="center">
<phrase 1="$vboptions[bbtitle]">$vbphrase[welcome_to_the_x]</phrase><br />
<br />
<phrase 1="faq.php?$session[sessionurl]" 2="register.php?$session[sessionurl]">$vbphrase[first_visit_message]</phrase>
</div></td>
<!-- / guest welcome message -->
</if>
<!-- login form -->
<td class="alt1" style="border-right:1px solid #E1E4F2; border-top:1px solid #E1E4F2; border-bottom:1px solid #E1E4F2; padding:0px; border-left-width:1px" align="left">
<form action="login.php" method="post" onsubmit="md5hash(vb_login_password,vb_login_md5password,vb_ login_md5password_utf)">
<script type="text/javascript" src="clientscript/vbulletin_md5.js"></script>
<table cellpadding="0" cellspacing="$stylevar[formspacer]" border="0">
<tr>
<td class="smallfont">$vbphrase[username]</td>
<td>
<input type="text" class="button" name="vb_login_username" id="navbar_username" size="10" accesskey="u" tabindex="1" value="$vbphrase[username]" onfocus="if (this.value == '$vbphrase[username]') this.value = '';" /></td>
<td class="smallfont" colspan="2" nowrap="nowrap">
<label for="cb_cookieuser_navbar">
<input type="checkbox" name="cookieuser" value="1" tabindex="3" id="cb_cookieuser_navbar" accesskey="c" checked="checked" />$vbphrase[remember_me]</label></td>
</tr>
<tr>
<td class="smallfont">$vbphrase[password]</td>
<td>
<input type="password" class="button" name="vb_login_password" size="10" accesskey="p" tabindex="2" /></td>
<td>
<input type="submit" class="button" value="$vbphrase[log_in]" tabindex="4" title="$vbphrase[enter_username_to_login_or_register]" accesskey="s" /></td>
</tr>
</table>
<input type="hidden" name="s" value="$session[sessionhash]" />
<input type="hidden" name="do" value="login" />
<input type="hidden" name="vb_login_md5password" />
<input type="hidden" name="vb_login_md5password_utf" />
</form></td>
<!-- / login form -->
</if>
</tr>
</tbody>
</table></div>
<div align="center">
<table border="0" width="99%" id="table2" cellspacing="0" cellpadding="0">
<tr>
<td class="alt5" colspan="3" style="border-top:1px solid #FFFFFF; border-left:1px solid #FFFFFF; border-right:1px solid #FFFFFF; " height="5">
</td>
</tr>
<tr>
<td class="alt1" align="left" style="vertical-align:center;border-left:1px solid #E1E4F2; border-top:1px solid #E1E4F2; border-bottom:1px solid #E1E4F2; ">
<if condition="is_array($navbits)">
<table cellpadding="0" cellspacing="0" border="0" id="table3">
<tr valign="bottom">
<td> <a href="#" onclick="history.back(1)"><img src="$stylevar[imgdir_misc]/navbits_start.gif" alt="$vbphrase[go_back]" border="0" /></a></td>
<td> </td>
<td width="100%" height="25"><span class="navbar">
<a href="$vboptions[forumhome].php?$session[sessionurl]" accesskey="1">
$vboptions[bbtitle]</a></span> $navbits[breadcrumb]</td>
</tr>
<tr>
<td class="navbar" style="font-size:10pt; padding-top:1px" colspan="3">
<a href="$scriptpath"><img class="inlineimg" src="$stylevar[imgdir_misc]/navbits_finallink.gif" alt="$vbphrase[reload_this_page]" border="0" /></a>
<strong>$navbits[lastelement]</strong></td>
</tr>
</table>
<else />
<div class="navbar" style="font-size:10pt">
<a href="$vboptions[forumhome].php?$session[sessionurl]" accesskey="1"><img class="inlineimg" src="$stylevar[imgdir_misc]/navbits_start.gif" alt="" border="0" /></a>
<strong>$vboptions[bbtitle]</strong></div></if>
</td>
<if condition="$bbuserinfo['userid']">
<td id="navbar_search" height="35" width="105" bgcolor="#F5F5FF" style="border-left:1px solid #FFFFFF; border-top:1px solid #E1E4F2; border-bottom:1px solid #E1E4F2; "><b>
<a href="search.php$session[sessionurl_q]" accesskey="4" rel="nofollow" style="text-decoration: none">
<img src="http://talkjesus.com/images/search2.gif" border="0"></a></b> <script type="text/javascript"> vbmenu_register("navbar_search"); </script></td>
<td id="navbar_search" height="35" bgcolor="#F5F5FF" width="25" style="border-right: 1px solid #E1E4F2; border-top: 1px solid #E1E4F2; border-bottom: 1px solid #E1E4F2; ">
<div class="smallfont">
<a href="login.php?$session[sessionurl]do=logout&logouthash=$bbuserinfo[logouthash]" onclick="return log_out()" style="text-decoration: none; font-weight:700">
<center>
<img border="0" src="http://talkjesus.com/images/menu/exit.gif" width="16" height="16" alt="Logout"></a></div></center>
</td></if>
</tr>
</table>
</div>
<div align="center">
<table border="0" width="99%" id="table4" cellpadding="0" cellspacing="0">
<tr>
<td align="center" height="5">
</td>
</tr>
</table>
</div>
<!-- / breadcrumb, login, pm info -->
<if condition="$show['forumdesc']">
</div>
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="alt1" width="100%"><strong>$foruminfo[title]</strong> <span class="smallfont">$foruminfo[description]</span></td>
</tr>
</table>
</if>
<if condition="$show['popups']">
<!-- NAVBAR POPUP MENUS -->
<if condition="$show['searchbuttons']">
<!-- header quick search form -->
<div class="vbmenu_popup" id="navbar_search_menu" style="display:none">
<table cellpadding="4" cellspacing="1" border="0">
<tr>
<td class="thead">$vbphrase[search_forums]</td>
</tr>
<tr>
<td class="vbmenu_option" title="nohilite">
<form action="search.php" method="post">
<input type="hidden" name="do" value="process" />
<input type="hidden" name="showposts" value="0" />
<input type="hidden" name="quicksearch" value="1" />
<input type="hidden" name="s" value="$session[sessionhash]" />
<input type="text" class="bginput" name="query" size="20" />$gobutton<br />
</form>
</td>
</tr>
<tr>
<td class="vbmenu_option"><a href="search.php$session[sessionurl_q]" accesskey="4" rel="nofollow">$vbphrase[advanced_search]</a></td>
</tr>
</table>
</div>
<!-- / header quick search form -->
</if>
<if condition="$show['member']">
<!-- user cp tools menu -->
<div class="vbmenu_popup" id="usercptools_menu" style="display:none">
<table cellpadding="4" cellspacing="1" border="0">
<tr><td class="thead">$vbphrase[quick_links]</td></tr>
<if condition="$vboptions['enablesearches']"><tr><td class="vbmenu_option"><a href="search.php?$session[sessionurl]do=getdaily">$vbphrase[todays_posts]</a></td></tr></if>
<tr><td class="vbmenu_option"><a href="forumdisplay.php?$session[sessionurl]do=markread">$vbphrase[mark_forums_read]</a></td></tr>
<tr><td class="vbmenu_option"><a href="#" onclick="window.open('misc.php?$session[sessionurl]do=buddylist&focus=1','buddylist','statusbar=no,me nubar=no,toolbar=no,scrollbars=yes,resizable=yes,w idth=250,height=300'); return false;">$vbphrase[open_buddy_list]</a></td></tr>
<tr><td class="thead"><a href="usercp.php$session[sessionurl_q]">$vbphrase[user_control_panel]</a></td></tr>
<if condition="$show['siglink']"><tr><td class="vbmenu_option"><a href="profile.php?$session[sessionurl]do=editsignature">$vbphrase[edit_signature]</a></td></tr></if>
<!--<if condition="$show['avatarlink']"><tr><td class="vbmenu_option"><a href="profile.php?$session[sessionurl]do=editavatar">$vbphrase[edit_avatar]</a></td></tr></if>-->
<tr><td class="vbmenu_option"><a href="profile.php?$session[sessionurl]do=editprofile">$vbphrase[edit_profile]</a></td></tr>
<tr><td class="vbmenu_option"><a href="profile.php?$session[sessionurl]do=editoptions">$vbphrase[edit_options]</a></td></tr>
<tr><td class="thead">$vbphrase[miscellaneous]</td></tr>
<if condition="$show['pmstats']"><tr><td class="vbmenu_option"><a href="private.php$session[sessionurl_q]">$vbphrase[private_messages]</a></td></tr></if>
<tr><td class="vbmenu_option"><a href="subscription.php$session[sessionurl_q]">$vbphrase[subscribed_threads]</a></td></tr>
<tr><td class="vbmenu_option"><a href="member.php?$session[sessionurl]u=$bbuserinfo[userid]">$vbphrase[my_profile]</a></td></tr>
<if condition="$show['wollink']"><tr><td class="vbmenu_option"><a href="online.php$session[sessionurl_q]">$vbphrase[whos_online]</a></td></tr></if>
</table>
</div>
<!-- / user cp tools menu -->
</if>
<!-- / NAVBAR POPUP MENUS -->
<!-- PAGENAV POPUP -->
<div class="vbmenu_popup" id="pagenav_menu" style="display:none">
<table cellpadding="4" cellspacing="1" border="0">
<tr>
<td class="thead" nowrap="nowrap">$vbphrase[go_to_page]</td>
</tr>
<tr>
<td class="vbmenu_option" title="nohilite">
<form action="$vboptions[forumhome].php" method="get" onsubmit="return this.gotopage()" id="pagenav_form">
<input type="text" class="bginput" id="pagenav_itxt" style="font-size:11px" size="4" />
<input type="button" class="button" id="pagenav_ibtn" value="$vbphrase[go]" />
</form>
</td>
</tr>
</table>
</div>
<!-- / PAGENAV POPUP -->
</if>
Freesteyelz
04-04-2006, 02:07 AM
Hehe...You didn't remove:
<tr valign="bottom">
Change to:
<tr>
:)
Chadi
04-04-2006, 02:11 AM
Well well well :) Found the problem. Firefox!
Try my site in IE and FF
www.talkjesus.com
You can see on forumhome for example, the forum cells in FF are vertically taller as if a new blank line is inserted.
Freesteyelz
04-04-2006, 02:45 AM
That would do it, if the vB templates have been modified. Setting a height in a <tr> or <td> tag may show up differently in IE and Firefox; sometimes an unused element. Removing unnecessary codes and using CSS often resolves those occurances.
With my site I have to be almost exact since I deal in pixels which meant editing quite a bit.
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.