Thanks, LiveWire! That seemed to do the trick (I had to play around with the placement a little bit, but I got it to work).
However, a new problem has cropped up in light of this. Now the "time is now" and "log out" options are floating between tables (see attachment). Should I just insert a new table around them?
Here's my footer code:
Code:
<br />
<br />
<table cellpadding="0" cellspacing="0" border="0" width="100%" align="center">
<tr>
<td align="$stylevar[left]">
<div class="smallfont" align="left">$vbphrase[all_times_are_gmt_x_time_now_is_y]</div></td>
<td align="$stylevar[right]"><div class="smallfont"><strong>
<if condition="!$show['guest']">
<!-- member logout -->
<a href="login.php?$session[sessionurl]do=logout&logouthash=$bbuserinfo[logouthash]" onclick="return log_out()"><phrase 1="$bbuserinfo[username]">$vbphrase[log_out_x]</phrase></a>
<!-- end member logout -->
</if>
</strong>
</div>
</td>
</tr>
</table>
$spacer_close
</td>
<td width="16" align="left" valign="top" style="background-image:url(images/styles/alturas8/misc/table_right.png)"> </td>
</table>
<form action="$vboptions[forumhome].php" method="get">
<table cellpadding="0" cellspacing="0" border="0" width="892" align="center" colspan="3">
<tr>
<td width="16" align="left" valign="top" style="background-image:url($stylevar[imgdir_misc]/table_left.png)"> </td>
<td width="860" align="center" valign="top" style="background-image:url($stylevar[imgdir_misc]/table.png)">
<table width="100%">
<tr>
<td class="tfoot">
<if condition="$show['quickchooser']">
<select name="styleid" onchange="switch_id(this, 'style')">
<optgroup label="$vbphrase[quick_style_chooser]">
$quickchooserbits
</optgroup>
</select>
</if>
</td>
<td class="tfoot">
<if condition="$show['languagechooser']">
<select name="langid" onchange="switch_id(this, 'lang')">
<optgroup label="$vbphrase[quick_language_chooser]">
$languagechooserbits
</optgroup>
</select>
</if>
</td>
<td class="tfoot" align="$stylevar[right]">
<div class="smallfont">
<strong>
<if condition="$show['contactus']"><a href="$vboptions[contactuslink]" rel="nofollow">$vbphrase[contact_us]</a> -</if>
<a href="$vboptions[homeurl]">$vboptions[hometitle]</a> -
<if condition="$show['admincplink']"><a href="$admincpdir/index.php$session[sessionurl_q]">$vbphrase[admin]</a> -</if>
<if condition="$show['modcplink']"><a href="$modcpdir/index.php$session[sessionurl_q]">$vbphrase[mod]</a> -</if>
<if condition="$vboptions['archiveenabled']"><a href="archive/index.php">$vbphrase[archive]</a> -</if>
<if condition="$vboptions[privacyurl]"><a href="$vboptions[privacyurl]">$vbphrase[privacy_statement]</a> -</if>
<a href="#top" onclick="self.scrollTo(0, 0); return false;">$vbphrase[top]</a>
</strong>
</div>
</td>
</td>
</tr>
</table>
</td>
<td width="16" align="left" valign="top" style="background-image:url($stylevar[imgdir_misc]/table_right.png)"> </td>
</tr>
</table>
<br />
<div align="center">
<div class="smallfont" align="center">
<!-- Do not remove this copyright notice -->
$vbphrase[powered_by_vbulletin]
<!-- Do not remove this copyright notice -->
</div>
<div class="smallfont" align="center">
<!-- Do not remove $cronimage or your scheduled tasks will cease to function -->
$cronimage
<!-- Do not remove $cronimage or your scheduled tasks will cease to function -->
$vboptions[copyrighttext]
</div>
</div>
</form>
<if condition="$show['dst_correction']">
<!-- auto DST correction code -->
<form action="profile.php" method="post" name="dstform">
<input type="hidden" name="s" value="$session[sessionhash]" />
<input type="hidden" name="do" value="dst" />
</form>
<script type="text/javascript">
<!--
var tzOffset = $bbuserinfo[timezoneoffset] + $bbuserinfo[dstonoff];
var utcOffset = new Date().getTimezoneOffset() / 60;
if (Math.abs(tzOffset + utcOffset) == 1)
{ // Dst offset is 1 so its changed
document.forms.dstform.submit();
}
//-->
</script>
<!-- / auto DST correction code -->
</if>
<script type="text/javascript">
<!--
// Main vBulletin Javascript Initialization
vBulletin_init();
//-->
</script>
</td>
</tr>
</table>
</td>
</tr>
</table>
<!-- /content area table -->
</div>