I'm trying to add the Login/PM info box to the right side of my logo in the header. The script works great when I get rid of the Login, PM Info code and just leave the Login Form code. What am I doing wrong here?
Link to my site:
Chicago Film Forum
Here's the code I currently have in my header:
Code:
<!-- logo -->
<a name="top"></a>
<div style="margin:10px; padding:15px; background:#FFFFFF;">
<div style="background:#535353 url(http://www.chicagofilmforum.com/images/misc/banner.gif); height:50px;">
<div style="float:left; height:50px; width:379px; text-align:left; "><a href="http://www.chicagofilmforum.com"><img src="http://www.chicagofilmforum.com/images/misc/logo.gif" alt="Chicago Film Forum" width="379" height="50" border="0"></a></div>
<div style="float:right; height:44px; text-align:left; padding:3px;">
<!-- login, pm info -->
<if condition="$show['member']">
<td class="alt2" valign="top" nowrap="nowrap"><div class="smallfont"><strong><phrase 1="$bbuserinfo[username]">$vbphrase[welcome_x]</phrase></strong><br />
<phrase 1="$pmbox[lastvisitdate]" 2="$pmbox[lastvisittime]">$vbphrase[last_visited_x_at_y]</phrase> <if condition="$show['pmstats']"><br />
<phrase 1="$vbphrase[unread_x_nav_compiled]" 2="$vbphrase[total_x_nav_compiled]" 3="$session[sessionurl_q]">$vbphrase[private_messages_nav]</phrase></if> </div></td>
<else />
<td class="alt2" nowrap="nowrap" style="padding:0px"> </td>
<!-- login, pm info -->
<!-- login form -->
<form action="login.php" method="post" onsubmit="md5hash(vb_login_password, vb_login_md5password, vb_login_md5password_utf, 0)">
<script type="text/javascript" src="clientscript/vbulletin_md5.js"></script>
<table cellpadding="0" cellspacing="3" border="0">
<tr>
<td class="smallfont">User Name</td>
<td><input type="text" class="bginput" style="font-size: 11px" name="vb_login_username" id="navbar_username" size="10" accesskey="u" tabindex="101" value="User Name" onfocus="if (this.value == 'User Name') this.value = '';" /></td>
<td class="smallfont" colspan="2" nowrap="nowrap"><label for="cb_cookieuser_navbar">
<input type="checkbox" name="cookieuser" value="1" tabindex="103" id="cb_cookieuser_navbar" accesskey="c" />
Remember Me?</label></td>
</tr>
<tr>
<td class="smallfont">Password</td>
<td><input type="password" class="bginput" style="font-size: 11px" name="vb_login_password" size="10" accesskey="p" tabindex="102" /></td>
<td><input type="submit" class="button" value="Log in" tabindex="104" title="Enter your username and password in the boxes provided to login, or click the 'register' button to create a profile for yourself." accesskey="s" /></td>
</tr>
</table>
<input type="hidden" name="s" value="" />
<input type="hidden" name="do" value="login" />
<input type="hidden" name="vb_login_md5password" />
<input type="hidden" name="vb_login_md5password_utf" />
</form>
<!-- / login form -->
</div>
</div>
<!-- /logo -->