Quote:
Originally Posted by b6gm6n
anyone ever get rid of the horizontal scrollbars in IE in the main chat window?
|
I fixed mine by just putting <div style="width:100%"> after $header and </div> after {$chat_page} on the CHAT template. Take a look at mine here :
HTML Code:
<html dir="$stylevar[textdirection]" lang="$stylevar[languagecode]">
<head>
<title>$vboptions[bbtitle] - $pagetitle</title>
$headinclude
</head>
<body>
$header
<div style="width: 100%">
$navbar
<if condition="$bbuserinfo[userid]=='0'">
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="tcat" colspan="3">Guest - No Permissions</td>
</tr>
<tr>
<td class="thead">Unable To View</td>
</tr>
<tr>
<td class="alt1" colspan="1">Guests Are Unable To Use The vB Chat System</td>
</tr>
</table>
<br/>
<else />
{$chat_page}</div>
<br />
</if>
$footer
</body>
</html>